UnityEngine.Avatar.INTERNAL_CALL_GetPostRotation C# (CSharp) Method

INTERNAL_CALL_GetPostRotation() private method

private INTERNAL_CALL_GetPostRotation ( Avatar self, int humanId, Quaternion &value ) : void
self Avatar
humanId int
value Quaternion
return void
        private static extern void INTERNAL_CALL_GetPostRotation(Avatar self, int humanId, out Quaternion value);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

コード例 #1
0
        internal Quaternion GetPostRotation(int humanId)
        {
            Quaternion quaternion;

            Avatar.INTERNAL_CALL_GetPostRotation(this, humanId, out quaternion);
            return(quaternion);
        }
All Usage Examples Of UnityEngine.Avatar::INTERNAL_CALL_GetPostRotation