示例#1
0
 public override void OnGazeEnter()
 {
     //Debug.LogWarning("image gaze enter...name = " + name);
     VRNotifyManager.SendNotify(Enum.NotifyType.OnLookIn, identify);
 }
示例#2
0
 public override void OnGazeOut()
 {
     //Debug.LogError("image gaze out...name = " + name);
     VRNotifyManager.SendNotify(Enum.NotifyType.OnLookOut, identify);
 }
示例#3
0
 public override void OnGazeOut()
 {
     isLooking = false;
     VRNotifyManager.SendNotify(Enum.NotifyType.OnLookOut, identify);
 }
示例#4
0
 public override void OnGazeActive()
 {
     //Debug.LogWarning("image gaze active...name = " + name);
     VRNotifyManager.SendNotify(Enum.NotifyType.OnUIImage, identify);
 }
示例#5
0
 public override void OnGazeActive()
 {
     isLooking = true;
     VRNotifyManager.SendNotify(Enum.NotifyType.OnUILabel, desc);
 }