Ejemplo n.º 1
0
 void StopMotorProcess()
 {
     if (thisMotorProcessSuite.IsRunning())
     {
         thisMotorProcessSuite.Stop();
     }
 }
        public void UpdateLevel(int level)
        {
            thisUpdateBowLevelProcessSuite.Stop();
            float targetFill = CalcFill(level);

            thisBowLevelPaneAdaptor.SetFill(targetFill);
        }
Ejemplo n.º 3
0
 void StopRotation()
 {
     if (thisRotateProcessSuite.IsRunning())
     {
         thisRotateProcessSuite.Stop();
     }
 }
Ejemplo n.º 4
0
 void StartHideTextProcess()
 {
     thisShowProcessSuite.Stop();
     thisHideProcessSuite.Start();
 }
Ejemplo n.º 5
0
 void StopButtonHoldProcess()
 {
     thisHoldProcessSuite.Stop();
     thisHoldIndicatorImage.SetHoldValue(0f);
     thisHoldIndicatorImage.DeactivateRecursively(false);
 }