UnityEditor.Unsupported.INTERNAL_CALL_MakeNiceVector3 C# (CSharp) Method

INTERNAL_CALL_MakeNiceVector3() private method

private INTERNAL_CALL_MakeNiceVector3 ( Vector3 &vector, Vector3 &value ) : void
vector Vector3
value Vector3
return void
        private static extern void INTERNAL_CALL_MakeNiceVector3(ref Vector3 vector, out Vector3 value);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

示例#1
0
        internal static Vector3 MakeNiceVector3(Vector3 vector)
        {
            Vector3 result;

            Unsupported.INTERNAL_CALL_MakeNiceVector3(ref vector, out result);
            return(result);
        }
All Usage Examples Of UnityEditor.Unsupported::INTERNAL_CALL_MakeNiceVector3