UnityEngine.AnimationCurve.INTERNAL_CALL_AddKey_Internal C# (CSharp) 메소드

INTERNAL_CALL_AddKey_Internal() 개인적인 메소드

private INTERNAL_CALL_AddKey_Internal ( AnimationCurve self, Keyframe &key ) : int
self AnimationCurve
key Keyframe
리턴 int
        private static extern int INTERNAL_CALL_AddKey_Internal(AnimationCurve self, ref Keyframe key);
        /// <summary>

Usage Example

예제 #1
0
 private int AddKey_Internal(Keyframe key)
 {
     return(AnimationCurve.INTERNAL_CALL_AddKey_Internal(this, ref key));
 }