1. 程式人生 > >UGUI點選按鈕穿透、UI跟隨攝像機旋轉

UGUI點選按鈕穿透、UI跟隨攝像機旋轉

1.UGUI點選按鈕時穿透到地面,導致角色跟著移動,解決辦法是在控制人物移動的腳本里,update函式中新增一個條件:

if (EventSystem.current.IsPointerOverGameObject())//點選到UI上
{
Debug.Log("Clicked on the UI");

}

2.讓UI永遠朝向攝像機

void Update()

{

    this.transform.rotation=Camera.main.transform.rotation;

}

 小白入門做點筆記,勿噴。