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));
 }