WaveEngine.Components.Animation.Animation3D.DefaultValues C# (CSharp) Method

DefaultValues() protected method

The default values
protected DefaultValues ( ) : void
return void
        protected override void DefaultValues()
        {
            base.DefaultValues();

            this.keyFrameEvents = new Dictionary<string, Dictionary<int, string>>();
            this.FramesPerSecond = 30;
            this.frame = 0;
            this.lastFrame = 0;
            this.Loop = true;
            this.targetFrame = -1;
            instances++;
        }