Answers for "unity input system ui not working"

2

unity input system not working

//add this somewhere in your script
//PlayerControls is the Input action script

PlayerControls controls;

private void Awake()
{
	controls = new PlayerControls();
}

private void OnEnable()
{
	if (usingController)
	{
		controls.Gameplay.Enable();
	}
}

private void OnDisable()
{
	if (usingController)
	{
		controls.Gameplay.Disable();
	}
}
Posted by: Guest on March-17-2021

Code answers related to "unity input system ui not working"

Browse Popular Code Answers by Language