DNNKTYMMT2SXGZDMTFYZOQPZ3IX5EF6ESQAMGO5UUDFUA44FXMGAC
OPUQ6NVYM2BN4H2FENH6EBGVU25XQBY2GRRZANPZEBEACZMDOGEAC
HXHNGFB2VCXB6YXDND35HJI22GBJC3QTSUR2TK3M3LXGJHVNXVHAC
DPJCZOPIKAKQIS4YRXETBSJA5ZTL2KQESSJE2TEZFLRQARXUVFXQC
EMED7UWAGESRTWJJWVXRL27O4XMBGZDDAU4LNVF3MQAYKFKRDNXQC
const [focusedNode, setFocusedNode] = useState<{ chunk: Chunk; node: Vector2; }>();
const [focusedNode, setFocusedNode] = useState<{
chunk: Chunk;
node: Vector2;
}>();
const [game, setGame] = useState<GameState>(new GameStateFactory({}).create());
const [game, setGame] = useState<GameState>( new GameStateFactory({}).create() );
const [game, setGame] = useState<GameState>(
new GameStateFactory({}).create()
);
setGame(game => {
setGame((game) => {
return game; })
return game;
})
return { ...game }; });
return { ...game };
});
}, [focusedNode]);
}, [game.playerUI.selectedPointNode, batchContents]);