UnityEngine.Avatar.INTERNAL_CALL_GetZYPostQ C# (CSharp) Method

INTERNAL_CALL_GetZYPostQ() private method

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

Usage Example

コード例 #1
0
        internal Quaternion GetZYPostQ(int humanId, Quaternion parentQ, Quaternion q)
        {
            Quaternion quaternion;

            Avatar.INTERNAL_CALL_GetZYPostQ(this, humanId, ref parentQ, ref q, out quaternion);
            return(quaternion);
        }
All Usage Examples Of UnityEngine.Avatar::INTERNAL_CALL_GetZYPostQ