Skip to content
Snippets Groups Projects
Commit ce071de3 authored by GoPJo's avatar GoPJo
Browse files

Fixed issue were input was not recognized deu to disabled actions

parent 0ad64a5c
No related branches found
No related tags found
No related merge requests found
......@@ -47,11 +47,13 @@ public void ApplySettings(ThumbStick movementSettings) {
if(movementSettings.leftHanded) {
thumbStickMover.leftHandMoveAction = leftHandReference;
thumbStickMover.leftHandMoveAction.action.Enable();
thumbStickMover.rightHandMoveAction = new InputActionProperty();
}
else {
thumbStickMover.leftHandMoveAction = new InputActionProperty();
thumbStickMover.rightHandMoveAction = rightHandReference;
thumbStickMover.rightHandMoveAction.action.Enable();
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment