#Hello, anyone else had issues when using

1 messages · Page 1 of 1 (latest)

teal sorrel
#

I ended up resetting the event system every time i need to use it.

    {
        var UIInputModule = EventSystem.current.GetComponent<InputSystemUIInputModule>();
        var eventActionsAsset = UIInputModule.actionsAsset;
        
        UIInputModule.enabled = false;
        UIInputModule.enabled = true;
        UIInputModule.actionsAsset = eventActionsAsset;
    }```