Answers for "unity new input system doesnt show buttons"

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 new input system doesnt show buttons"

Browse Popular Code Answers by Language