Beispiel #1
0
 void HandleOnCycleStartedExecution(CycleEventArgs e)
 {
     if (TrackerAlgorithm == ChildrenTranckerAlgorithmEnum.CycleStart)
     {
         TrackChildrenComponents();
     }
 }
 protected virtual void OnCycleFinishedExecution(CycleEventArgs p_args)
 {
     if (EnableScheduler)
     {
         if (p_args.IsPing)
         {
             ForceSetPanelStateValue(PanelStateEnum.Opened, false);
         }
         else
         {
             ForceSetPanelStateValue(PanelStateEnum.Closed, false);
         }
     }
 }
Beispiel #3
0
 protected virtual void HandleOnStop(CycleEventArgs e)
 {
     ResetAllRigidBodyValues();
     Block.SubInGlobalPressCount();
 }
Beispiel #4
0
 protected virtual void HandleOnFirstStart(CycleEventArgs e)
 {
     Block.AddInGlobalPressCount();
 }
	void HandleOnCycleStartedExecution (CycleEventArgs e)
	{
		if(TrackerAlgorithm == ChildrenTranckerAlgorithmEnum.CycleStart)
			TrackChildrenComponents();
	}
	protected virtual void HandleOnStop (CycleEventArgs e)
	{
		ResetAllRigidBodyValues();
		Block.SubInGlobalPressCount();
	}
	protected virtual void HandleOnFirstStart (CycleEventArgs e)
	{
		Block.AddInGlobalPressCount();
	}