Example #1
0
 public override void onPressurePlateTriggerStay(PressurePlateController pressurePlate)
 {
     if (!controller.goingToTarget)
     {
         controller.GoToTarget();
     }
 }
Example #2
0
 public override void onPressurePlateTriggerEnter(PressurePlateController pressurePlate)
 {
     controller.GoToTarget();
 }
Example #3
0
 public override void onPressurePlateTriggerExit(PressurePlateController pressurePlate)
 {
 }
Example #4
0
 public override void onPressurePlateTriggerExit(PressurePlateController pressurePlate)
 {
     controller.GoToOrigin();
 }
 public abstract void onPressurePlateTriggerEnter(PressurePlateController pressurePlate);