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