UnityEngine.Event.INTERNAL_CALL_Internal_SetMousePosition C# (CSharp) Method

INTERNAL_CALL_Internal_SetMousePosition() private method

private INTERNAL_CALL_Internal_SetMousePosition ( Event self, Vector2 &value ) : void
self Event
value Vector2
return void
        private static extern void INTERNAL_CALL_Internal_SetMousePosition(Event self, ref Vector2 value);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

Ejemplo n.º 1
0
 private void Internal_SetMousePosition(Vector2 value)
 {
     Event.INTERNAL_CALL_Internal_SetMousePosition(this, ref value);
 }