INTERNAL_CALL_GetKey_Internal() 개인적인 메소드

private INTERNAL_CALL_GetKey_Internal ( AnimationCurve self, int index, Keyframe &value ) : void
self AnimationCurve
index int
value Keyframe
리턴 void
예제 #1
0
        private Keyframe GetKey_Internal(int index)
        {
            Keyframe result;

            AnimationCurve.INTERNAL_CALL_GetKey_Internal(this, index, out result);
            return(result);
        }
예제 #2
0
        private Keyframe GetKey_Internal(int index)
        {
            Keyframe keyframe;

            AnimationCurve.INTERNAL_CALL_GetKey_Internal(this, index, out keyframe);
            return(keyframe);
        }