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
コード例 #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);
        }