回答編集履歴

3

詳細の追加とコードの修正

2020/10/23 22:42

投稿

hehebeb
hehebeb

スコア728

test CHANGED
@@ -38,7 +38,7 @@
38
38
 
39
39
  {
40
40
 
41
- Screen.SetResolution(1920, 1080, true)
41
+ Screen.SetResolution(1920, 1080, true);
42
42
 
43
43
  }
44
44
 

2

詳細の追加とコードの修正

2020/10/23 22:42

投稿

hehebeb
hehebeb

スコア728

test CHANGED
@@ -38,7 +38,7 @@
38
38
 
39
39
  {
40
40
 
41
- Screen.SetResolution(1080, 1920, true)
41
+ Screen.SetResolution(1920, 1080, true)
42
42
 
43
43
  }
44
44
 

1

詳細の追加とコードの修正

2020/10/07 13:53

投稿

hehebeb
hehebeb

スコア728

test CHANGED
@@ -13,3 +13,39 @@
13
13
  3つ目の引数はフルスクリーンかどうかを指定します。
14
14
 
15
15
  ここが`true`じゃないとウィンドウサイズが変わってしまいます。
16
+
17
+
18
+
19
+
20
+
21
+ ###追記
22
+
23
+
24
+
25
+ ボタンを押したとき(ButtonコンポーネントもしくはEvent Triggerで)Controller(下スクリプト)から処理を呼び出すようにします。
26
+
27
+
28
+
29
+ ```C#
30
+
31
+ public class Controller : MonoBehaviour
32
+
33
+ {
34
+
35
+ //1080pのボタンをクリック
36
+
37
+ public void Clicked1080()
38
+
39
+ {
40
+
41
+ Screen.SetResolution(1080, 1920, true)
42
+
43
+ }
44
+
45
+
46
+
47
+ //... 同じように720p, 360pを設定していく
48
+
49
+ }
50
+
51
+ ```