Пример #1
0
 void StopMotorProcess()
 {
     if (thisMotorProcessSuite.IsRunning())
     {
         thisMotorProcessSuite.Stop();
     }
 }
        public void UpdateLevel(int level)
        {
            thisUpdateBowLevelProcessSuite.Stop();
            float targetFill = CalcFill(level);

            thisBowLevelPaneAdaptor.SetFill(targetFill);
        }
Пример #3
0
 void StopRotation()
 {
     if (thisRotateProcessSuite.IsRunning())
     {
         thisRotateProcessSuite.Stop();
     }
 }
Пример #4
0
 void StartHideTextProcess()
 {
     thisShowProcessSuite.Stop();
     thisHideProcessSuite.Start();
 }
Пример #5
0
 void StopButtonHoldProcess()
 {
     thisHoldProcessSuite.Stop();
     thisHoldIndicatorImage.SetHoldValue(0f);
     thisHoldIndicatorImage.DeactivateRecursively(false);
 }