unity2020.3.6f
UNITY 画面タップ 処理
画面タップしている間の処理
if (Input.GetMouseButton(0))
画面タップした瞬間の処理
if (Input.GetMouseButtonDown(0))
画面タップを離した瞬間の処理
if (Input.GetMouseButtonUp(0))
unity2020.3.6f
UNITY 画面タップ 処理
画面タップしている間の処理
if (Input.GetMouseButton(0))
画面タップした瞬間の処理
if (Input.GetMouseButtonDown(0))
画面タップを離した瞬間の処理
if (Input.GetMouseButtonUp(0))
コメント