コード例 #1
0
ファイル: StarshipController.cs プロジェクト: torybash/Gamma
    public void BoosterActive(bool on)
    {
        boosterActive = on;


        if (on)
        {
            upThruster.TurboOn();
            downThruster.TurboOn();
            rightThruster.TurboOn();
        }
        else
        {
            upThruster.TurboOff();
            downThruster.TurboOff();
            rightThruster.TurboOff();
        }
    }