Hello! I struggle to update the front end when there is a new update from the backend. For exemple, when I receive a signal from "socket.on(‘cubeDestroyed’, (id *, pos) " I want that the function Chunks rerender some or all of his mesh. But I don’t understand how I can send a signal from socket.on to tell this function to rerender.
I find this way that is a little bit “cleaner” using “create” from “zustand”. But it still feels not that good to change the value of the bool like this to trigger a rendering. I don’t know either if it may cause some performance issues, so I’m still looking for a better solution if anybody has one!
// Hook used to request chunks rendering
const chunksHook = create(set => ({
bool: false
}))
socket.on('voxelDestroyed', (id_, pos) => {
// remove the voxel destroyed
world.setVoxel(pos.x, pos.y, pos.z, 0)
updatedCells = world.updateVoxelGeometry(pos.x, pos.y, pos.z)
// request chunks rendering
chunksHook.setState({bool: !chunksHook.getState().bool})
})
function Chunks(props, status) {
// hook used for rendering
chunksHook(state => state.bool)
// code continue...
}
its always easier to make apps state driven, what you see on screen is a reflection of state. you need to move away from polling and other OOP practices. given that you have settled on zustand you can do this:
btw, args is for constructor arguments. new THREE.Foo(1, 2, 3) equals <foo args={[1, 2, 3]} />, things like args={[new Float32Array(d[0]), 3]} will re-create the underlying object from scratch, not sure if that’s your goal.