Beispiel #1
0
    void StartFeedback()
    {
        // Start the countdown
        Action countdownFinished =
            () => {
            mDialogueManager.WaitForReady();
        };

        mCountdown.StartCountdown(Game.FEEDBACK_COUNTDOWN, countdownFinished);

        // Start the playback
        mViewerChart.StartViewer(mRecordingPlayer);
        mRecordingPlayer.Play(mNetworkManager.myPlayer, mScreen, true);
    }