OpTrigger_GoNext.cs 359 B

1234567891011121314151617181920
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using ChivaXR.Op;
  5. /// <summary>
  6. /// 跳过,占位
  7. /// </summary>
  8. public class OpTrigger_GoNext : OperationData_TriggerMode
  9. {
  10. public override void SetDataStateValue(float value)
  11. {
  12. }
  13. public override bool TriggerCondition()
  14. {
  15. return true;
  16. }
  17. }