go back to click to move

This commit is contained in:
HF 2024-01-23 13:54:28 +01:00
parent 0d9ac167c3
commit 9abd199821
2 changed files with 4 additions and 4 deletions

View File

@ -88,7 +88,7 @@ const MovementControls = () => {
const onCancel = useCallback((event) => {
event.preventDefault();
// dispatch(cancelMove());
dispatch(cancelMove());
}, []);
const refCallBack = useCallback((node) => {

View File

@ -145,7 +145,7 @@ export default function gui(
case 's/SET_MOVE_U': {
const { value } = action;
const moveU = state.moveU + value;
const moveU = value;
return {
...state,
moveU,
@ -154,7 +154,7 @@ export default function gui(
case 's/SET_MOVE_V': {
const { value } = action;
const moveV = state.moveV + value;
const moveV = value;
return {
...state,
moveV,
@ -163,7 +163,7 @@ export default function gui(
case 's/SET_MOVE_W': {
const { value } = action;
const moveW = state.moveW + value;
const moveW = value;
return {
...state,
moveW,