Exemplo n.º 1
0
    private void Update()
    {
        if (input != 0)
        {
            GlobalValues.IncrementSailHeight(input * sailHeightIncrement);
        }

        if (soundTimer == 0 && Mathf.Abs(input) > .75)
        {
            soundTimer++;
            sound.time = .12f;
            sound.Play();
        }

        if (soundTimer > 0)
        {
            soundTimer++;
        }
        if (soundTimer >= 60)
        {
            soundTimer = 0;
        }
    }