Exemplo n.º 1
0
    public void PushDown()
    {
        float tTime = rocketController.GetSideThrustTime();

        //Debug.Log(tTime);
        if (!mainSwitchController.GetMainSwitch())
        {
            return;
        }
        if (tTime > 0.0)
        {
            push = true;
            SideTrustEmissionL.enabled = true;
            audioSource.PlayOneShot(audioClip);
        }
    }