VREventTriggerLook.cs 270 B

1234567891011121314151617
  1. using System;
  2. using UnityEngine;
  3. public class VREventTriggerLook : VREventTrigger
  4. {
  5. protected override void Start()
  6. {
  7. }
  8. public override void OnEvnetCountDownEnter(GameObject f_goSrc)
  9. {
  10. }
  11. public override void OnEventCountDownExit(GameObject f_goSrc)
  12. {
  13. }
  14. }