UnityEngine.AnimationCurve.INTERNAL_CALL_AddKey_Internal C# (CSharp) Method

INTERNAL_CALL_AddKey_Internal() private method

private INTERNAL_CALL_AddKey_Internal ( AnimationCurve self, Keyframe &key ) : int
self AnimationCurve
key Keyframe
return 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));
 }