UnityEngine.AnimationCurve.INTERNAL_CALL_MoveKey C# (CSharp) Method

INTERNAL_CALL_MoveKey() private method

private INTERNAL_CALL_MoveKey ( AnimationCurve self, int index, Keyframe &key ) : int
self AnimationCurve
index int
key Keyframe
return int
        private static extern int INTERNAL_CALL_MoveKey(AnimationCurve self, int index, ref Keyframe key);
        /// <summary>

Usage Example

コード例 #1
0
 public int MoveKey(int index, Keyframe key)
 {
     return(AnimationCurve.INTERNAL_CALL_MoveKey(this, index, ref key));
 }