UnityEngine.Avatar.INTERNAL_CALL_GetPreRotation C# (CSharp) Method

INTERNAL_CALL_GetPreRotation() private method

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

Usage Example

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

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