feat(): 添加删除连接线的提示
This commit is contained in:
@@ -11,6 +11,7 @@ namespace UI
|
||||
[SerializeField] private GameObject reminderInteractPrefab;
|
||||
[SerializeField] private GameObject reminderConnectPrefab;
|
||||
[SerializeField] private GameObject reminderSetPointPrefab;
|
||||
[SerializeField] private GameObject reminderDeleteLinePrefab;
|
||||
private PlayerInteractorController playerInteractorController;
|
||||
private PlayerConnectController playerConnectController;
|
||||
|
||||
@@ -49,12 +50,14 @@ namespace UI
|
||||
{
|
||||
reminderConnectPrefab.SetActive(true);
|
||||
reminderSetPointPrefab.SetActive(true);
|
||||
reminderDeleteLinePrefab.SetActive(true);
|
||||
}
|
||||
|
||||
private void HandleConnectGazeExit(GameObject obj)
|
||||
{
|
||||
reminderConnectPrefab.SetActive(false);
|
||||
reminderSetPointPrefab.SetActive(false);
|
||||
reminderDeleteLinePrefab.SetActive(false);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user