Example #1
0
 void StopFade()
 {
     if (thisProcess != null && thisProcess.IsRunning())
     {
         thisProcess.Stop();
     }
     thisProcess = null;
 }
Example #2
0
 void StartFade()
 {
     StopFade();
     thisProcess = thisSlickBowShootingProcessFactory.CreateArrowTrailFadeProcess(
         thisFadeTime,
         this,
         thisTypedAdaptor.GetAlpha()
         );
     thisProcess.Run();
 }