UnityEngine.Avatar.INTERNAL_CALL_GetZYRoll C# (CSharp) Method

INTERNAL_CALL_GetZYRoll() private method

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

Usage Example

コード例 #1
0
        internal Quaternion GetZYRoll(int humanId, Vector3 uvw)
        {
            Quaternion result;

            Avatar.INTERNAL_CALL_GetZYRoll(this, humanId, ref uvw, out result);
            return(result);
        }
All Usage Examples Of UnityEngine.Avatar::INTERNAL_CALL_GetZYRoll