MIRA: Multiplayer Interactive World Models Trained on Rocket League
- AI
- Gaming
- Open Source
The project page and blog post show a multiplayer world model for Rocket League that runs interactively at 20 frames per second on a single GPU. Instead of using the game’s usual graphics and physics engine, the demo renders the match entirely from a 5 billion parameter neural network trained on 10,000 hours of gameplay data. That made the post notable on its face, but the useful signal came from people who actually played it. The consensus was that it feels much more like Rocket League than expected. The ball physics and overall look were convincing enough that experienced players said they really did feel in control of the car. The failure mode was not visual collapse. It was agency. Inputs were sometimes dropped, delayed, or overridden by actions the model seemed to expect, which made the experience feel like playing on a slow machine or fighting a controller issue. That pushed the conversation toward a familiar world-model bottleneck. A system can predict plausible next frames and still be weak at respecting low-probability user actions in real time. Several comments tied that directly to the training setup. If the data came from a predictable policy, the model may have learned that it can do well by following the likely trajectory of play rather than the exact command stream. The open question people cared about was not whether this looks impressive, it clearly does, but how to make these models more steerable, more controllable, and more transparent internally. That showed up in questions about whether the latent state could be mapped to and from explicit physics variables, edited for experiments like changing velocity or boost, and then fed back into the model without breaking continuity. Separate from the technical praise, multiple people also asked why the team released code and data slices but not the 5B model weights, since open weights would make reproduction, fine-tuning, and deeper probing much easier.
If you build on world models, treat playability and input faithfulness as separate milestones. The headline result is not just visual realism, but whether the model reliably follows user intent under real-time control.
-
mira-wm.com
- Discuss on HN