Example #1
0
 void StopAndClearProcess()
 {
     if (thisProcess.IsRunning())
     {
         thisProcess.Stop();
     }
     thisProcess = null;
 }
Example #2
0
 public override void OnEnter()
 {
     thisProcess = thisProcessFactory.CreateVisualPickednessProcess(
         thisPickableUIImage,
         1f,
         thisStateEngine,
         true
         );
     thisProcess.Run();
 }
Example #3
0
        public override void OnEnter()
        {
            float sourcePickedness = thisPickableUIImage.GetVisualPickedness();

            thisProcess = thisProcessFactory.CreateVisualPickednessProcess(
                thisPickableUIImage,
                0f,
                thisStateEngine,
                false
                );
            thisProcess.Run();
        }