UnityEngine.AnimationCurve.INTERNAL_CALL_GetKey_Internal C# (CSharp) Method

INTERNAL_CALL_GetKey_Internal() private method

private INTERNAL_CALL_GetKey_Internal ( AnimationCurve self, int index, Keyframe &value ) : void
self AnimationCurve
index int
value Keyframe
return void
        private static extern void INTERNAL_CALL_GetKey_Internal(AnimationCurve self, int index, out Keyframe value);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

Example #1
0
        private Keyframe GetKey_Internal(int index)
        {
            Keyframe result;

            AnimationCurve.INTERNAL_CALL_GetKey_Internal(this, index, out result);
            return(result);
        }
All Usage Examples Of UnityEngine.AnimationCurve::INTERNAL_CALL_GetKey_Internal