Example #1
0
    public void Input(QteAction action)
    {
        if (!isActiveAndEnabled)
        {
            return;
        }

        _actionThisTick = action;
    }
Example #2
0
 private void GeneratePrompt()
 {
     _promptFor = NextPrompt();
     if (IsQteConsideredHarmful())
     {
         _timeRemainingForCurrentPrompt = _qteDuration;
     }
     else
     {
         _timeRemainingForCurrentPrompt = _qteDuration * CalculateBonusTimeFactor();
     }
     ShowPrompt();
 }