WaitFrames() public méthode

public WaitFrames ( int frames ) : void
frames int
Résultat void
Exemple #1
0
 public override void Action(SF4Control sf4control, bool sendInputs)
 {
     sf4control.WaitFrames(frames);
     if (PlaySound)
     {
         roadie.PlaySound(Roadie.WAIT_SOUND);
     }
 }
Exemple #2
0
        public override void Action(SF4Control sf4control, bool sendInputs)
        {
            if (sendInputs)
            {
                sf4control.Press(inputs);
            }
            else
            {
                //press event waits 1 frame, if send inputs is disabled wait frame is maintained
                sf4control.WaitFrames(1);
            }

            if (PlaySound)
            {
                if (inputs.Intersect(Directions).Count() > 0)
                {
                    roadie.PlaySound(Roadie.PRESS_DIRECTION_SOUND);
                }
                if (inputs.Intersect(Buttons).Count() > 0)
                {
                    roadie.PlaySound(Roadie.PRESS_BUTTON_SOUND);
                }
            }
        }
 public override void Action(SF4Control sf4control, bool sendInputs)
 {
     sf4control.WaitFrames(frames);
     if (PlaySound) { roadie.PlaySound(Roadie.WAIT_SOUND); }
 }
        public override void Action(SF4Control sf4control, bool sendInputs)
        {
            if (sendInputs)
            {
                sf4control.Press(inputs);
            }
            else
            {
                //press event waits 1 frame, if send inputs is disabled wait frame is maintained
                sf4control.WaitFrames(1);
            }

            if (PlaySound)
            {
                if (inputs.Intersect(Directions).Count() > 0)
                {
                    roadie.PlaySound(Roadie.PRESS_DIRECTION_SOUND);
                }
                if (inputs.Intersect(Buttons).Count() > 0)
                {
                    roadie.PlaySound(Roadie.PRESS_BUTTON_SOUND);
                }
            }
        }