You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was importing your plug-in and notice there's a minor issue in your sample player.gd. If you change the dead zone in the virtual joystick node to 0 so it has no effect, there will still be a dead zone. The reason is the last parameter in the Input.get_vector has an automatically calculated Dead zone based off the area. By default it's set to negative one. This overrides your dead zone component script. You probably can just add a zero in the last parameter like this.
The text was updated successfully, but these errors were encountered:
I was importing your plug-in and notice there's a minor issue in your sample player.gd. If you change the dead zone in the virtual joystick node to 0 so it has no effect, there will still be a dead zone. The reason is the last parameter in the Input.get_vector has an automatically calculated Dead zone based off the area. By default it's set to negative one. This overrides your dead zone component script. You probably can just add a zero in the last parameter like this.
The text was updated successfully, but these errors were encountered: