Hello everyone,
I got this error while developing my game. It doesn’t seem to interrupt the flowing of the game but I don’t like to have errors around and meet them later on.
The full error is:
“No IInputInteraction with name ‘Sector’ (mentioned in ‘Sector(directions=12,sweepBehavior=1)’) has been registered”
It’s tells me that it comes from my new input system script when enabling the input system:
private void OnEnable()
{
_input.Enable();
}
and then directs me to the generated input system class here:
public void Enable()
{
asset.Enable();
}
Someone knows what to do?