Animation.Timer.Timer C# (CSharp) Method

Timer() public method

public Timer ( float time = 0.0f, float duration = 1.0f )
time float
duration float
            public Timer(float time = 0.0f, float duration = 1.0f)
            {
                this.time = time;
                this.duration = duration;

                isComplete = false;
                //playbackState = PlaybackState.stopped;
            }