Animation in Bevy: The Big Picture
ibobev
63 points
7 comments
September 08, 2026
Related Discussions
Found 5 related stories in 60.6ms across 5,917 title embeddings via pgvector HNSW
- Show HN: Manim (3Blue1Brown's animation engine) in the browser via WebGPU sinaatalay · 46 pts · July 29, 2026 · 49% similar
- Show HN: Interactive, animated architecture of any HuggingFace models lizhaoliu · 63 pts · August 18, 2026 · 46% similar
- Gleam Is Now on Tangled nerdypepper · 223 pts · July 18, 2026 · 45% similar
- Show HN: Quasicrystals Animation Playground with WebXR r34 · 37 pts · August 15, 2026 · 44% similar
- Show HN: Real-time avatars that change emotions as you talk benanam · 12 pts · July 14, 2026 · 43% similar
Discussion Highlights (7 comments)
GenericCanadian
Bevy resources for those interested in learning: - https://bevy.org/learn/book/intro - https://taintedcoders.com
Zedriv
Bevy is awesome! I've been helping build out a visual editor for it and things are exciting ( https://github.com/jbuehler23/jackdaw ). More contributors are always welcome! jackdaw discord: https://discord.gg/jQT6gee3V
dgunay
Haven't touched it in a few years but Bevy was a really nice breath of fresh air when I dipped my toes back into hobby game dev. I wasn't used to being able to create a game almost purely as code without having to touch a WYSIWYG editor.
cubething
crazy to see bevy on the front page of hacker news. thanks for sharing!
yazaddaruvala
Anyone with familiarity know when an engine like Bevy will have (or already has) plugins for simulated movement animation? In my most recent experimental game I’d like to be able to just assign BiPed / QuadPed to the asset mesh + rig and let the engine handle the rest. Ideally, allowing me to build custom animations for attacks (or even custom movement animation like a limp) and have those blend into each other and also blend into / outof the default movement animations. Inspired by https://youtu.be/FM8yNkWad1w?is=XV3FmLG4IPvTWknh
tancop
The animation system is good for most use cases but it's also super hard to do anything procedural like UI animation. If you want to animate a button you need to write 5 helpers to make it less painful. It's mostly designed for importing from a file. A bit off topic but their handling of async IO tasks is awful . The engine polls them for you but you also need to poll them yourself in a separate system, because you can't access a `Commands` instance from inside the future without blocking the main thread and there is no way to pass a callback that runs when it's finished. That's not a problem most games will see but for anyone loading content from a server (like patch notes or server lists) or using Bevy as a UI library it can add up.
echelon
I've used Bevy a few times (plain old coding), and recently again a few months ago with Claude Code and Opus. I wasn't happy with Opus's grasp of Bevy. Opus and Fable are both great at Rust, but the results in Bevy have been historically middling. (But so was ThreeJS at the time.) Does anyone know how Astra fares? I see all of these incredible Blender and ThreeJS results, but I'd love to work in Rust and Bevy. But if the model can't emit it, then there's nothing that can be done. The one other downfall of this might be the fact that the compile times make iteration difficult. Any anecdotes?