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 just found Griddly and I'm psyched. This'll be very helpful for me, and I still need to understand how it works.
One thing I was disappointed with is that the game visualization doesn't animate the player movement, i.e. the players jump discretely from cell to cell rather than move there in a linear motion. It's weird to me that you'd take this design choice, since I would think that slick visualizations are a prime feature of Griddly. The difference between the experience of watching a game with movement animation and one without is substantial. Check out this "GridRoyale" environment and UI I designed two years ago with movement animation: https://grid-royale.herokuapp.com/
I'm guessing you may have discussed this before, but I couldn't find it on the issue tracker.
What do you think about adding this feature?
The text was updated successfully, but these errors were encountered:
Hi @cool-RR. As Griddly is a tool for discrete grid-world environments primarily for use in reinforcement learning, the movements are typically discrete because they happen within single time-steps.
I agree adding this linear movement would look slick, but it will not reflect what is happening in the underlying game engine itself. Many people will want to use algorithms that learn directly from the pixel representations, and in this case the linear interpolation will not reflect the underlying MDP state.
It would be possible to add these animations for visualization/demo purposes, but this will probably only be a feature in the browser itself. I think this could be added fairly easily using phaser ....
Yes, linear movements don't represent what actually happens in the game mechanics; neither do the sprites that Griddly uses nor the clever tiling logic that makes walls look great when placed next to each other.
Like these two features I mentioned, the movement animation feature I'm proposing is strictly for improving the viewing experience, and it should definitely be implemented only when visualizing for humans.
I just found Griddly and I'm psyched. This'll be very helpful for me, and I still need to understand how it works.
One thing I was disappointed with is that the game visualization doesn't animate the player movement, i.e. the players jump discretely from cell to cell rather than move there in a linear motion. It's weird to me that you'd take this design choice, since I would think that slick visualizations are a prime feature of Griddly. The difference between the experience of watching a game with movement animation and one without is substantial. Check out this "GridRoyale" environment and UI I designed two years ago with movement animation: https://grid-royale.herokuapp.com/
I'm guessing you may have discussed this before, but I couldn't find it on the issue tracker.
What do you think about adding this feature?
The text was updated successfully, but these errors were encountered: