提示画像ですがなぜUIがオブジェクトに上に乗った時に反応しないのでしょうか?
イベントシステム、
関数を設定
イベントタイプをオブジェクトの上に乗った時の実行するタイプを設定
Canvasの子になっている。
色々確認して試しましたが原因がわかりません。
参考サイト: https://ekulabo.com/check-ui
参考サイト: https://tech.pjin.jp/blog/2017/09/03/unity_event-trigger/
cs
1using System.Collections; 2using System.Collections.Generic; 3using UnityEngine; 4using UnityEngine.UI; 5 6 7public class SelectItem : MonoBehaviour 8{ 9 // Start is called before the first frame update 10 void Start() 11 { 12 13 } 14 15 // Update is called once per frame 16 void Update() 17 { 18 19 } 20 21 22 23 public void Item() 24 { 25 Debug.Log("あああ"); 26 } 27} 28
UIを他オブジェクトにドラッグ&ドラッグしようとしてる形ですか?
このイベントトリガーだと「マウスポインターがこのImageに重なった瞬間」発動します。
やりたいことを再確認してください。
あなたの回答
tips
プレビュー