junhyungPARK78 / chuchuUnity

0 stars 0 forks source link

세로 화면 플레이 고정시키기 #56

Open junhyungPARK78 opened 1 year ago

junhyungPARK78 commented 1 year ago

참고 url https://scvtwo.tistory.com/159

junhyungPARK78 commented 1 year ago

[크롬 개발자 도구] 기기모드 (device mode) 사용 방법 https://jamesdreaming.tistory.com/117

junhyungPARK78 commented 1 year ago

Unityからスマホ画面の向きの固定・解除(iOS・Android共通) https://qiita.com/satotin/items/2009788da11805a4a9cf

https://forum.unity.com/threads/screen-orientation-not-working.929082/#post-6878123

junhyungPARK78 commented 1 year ago

스크린 크기 받아오기

if (screen.width < screen.height) {
  canvas.style.width = "100%";
}
else {
  canvas.style.height = "100%";
}
junhyungPARK78 commented 1 year ago

아이고. 안되겠다. 이 부분은 일단 포기. 다른 거 부터 진행하자.