UnityEditor.SessionState.INTERNAL_CALL_SetVector3 C# (CSharp) Method

INTERNAL_CALL_SetVector3() private method

private INTERNAL_CALL_SetVector3 ( string key, Vector3 &value ) : void
key string
value Vector3
return void
        private static extern void INTERNAL_CALL_SetVector3(string key, ref Vector3 value);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

Exemplo n.º 1
0
 internal static void SetVector3(string key, Vector3 value)
 {
     SessionState.INTERNAL_CALL_SetVector3(key, ref value);
 }