UnityEngine.Keyframe.Keyframe C# (CSharp) Method

Keyframe() public method

public Keyframe ( float time, float value ) : System
time float
value float
return System
        public Keyframe(float time, float value)
        {
            this.m_Time = time;
            this.m_Value = value;
            this.m_InTangent = 0f;
            this.m_OutTangent = 0f;
            this.m_TangentMode = 0;
        }

Same methods

Keyframe::Keyframe ( float time, float value, float inTangent, float outTangent ) : System
Keyframe