public void StopSmoothLook()
 {
     if (thisProcess != null && thisProcess.IsRunning())
     {
         thisProcess.Stop();
     }
     thisProcess = null;
 }
 public void StartSmoothLook()
 {
     thisProcess = thisSlickBowShootingProcessFactory.CreateSmoothLookProcess(
         this,
         thisLookAtTarget,
         thisSmoothCoefficient,
         thisProcessOrder
         );
     thisProcess.Run();
 }