I want to set the current event that’s currently null to a new keyboard event.
Event.current = Event.KeyboardEvent("v");
Debug.Log(Event.KeyboardEvent("v")); // gives "v" as intended
Debug.Log(Event.current); // gives a null
How can I do set the current event to a new one?