Video generation & game engines
The game engine rule that generative models keep forgetting
Video generative models are often called the next generation of game engines. But without solid state tracking, they forget what happened two frames ago. A new paper dissects the problem and offers a dataset of over 90 hours of Black Myth: Wukong gameplay as a resource for fixing it.
Emmanuel Fabrice Omgbwa Yasse AI-assisted
2026-07-23 · 5 min read

For a decade now, the tech world has been promising that generative AI would eventually replace the game engine. Feed a model a few frames of a player running through a forest, let it extrapolate the next frames, and ta-da: infinite, reactive worlds without a polygon in sight. It is a seductive vision, and video generative models have gotten good enough that the hype has started to sound plausible.
But any developer who has actually built an interactive system knows the problem. A generative model trained to predict pixels has no concept of what a health bar is, or that a door opened three minutes ago should stay open, or that a player's inventory persists across scenes. It just sees frames. And when all you have is frames, the world resets every time the player blinks. This blind spot mirrors a challenge that researchers studying agentic systems face in production.
A new paper from AlayaLab, posted on arXiv in July 2026 under the title From Pixels to States: Rethinking Interactive World Models as Game Engines, takes this tension seriously. Instead of asking how to make video generation more realistic, the authors ask a more fundamental question: what do game engines actually do that generative models don't, and how do we bridge that gap?
The loop that keeps a world alive
The paper's central move is to take the conventional game engine loop as its organizing lens. In a traditional engine, the flow is: the player performs an action, that action updates an explicit game state according to defined rules, and an observation is rendered from the resulting state. Then the loop repeats. The state is a database of facts: the player's position, the number of enemies alive, which doors are unlocked.
Generative models skip the state step. They learn to map from a sequence of past observations and an action directly to a predicted next observation. That works fine in short clips, but falls apart over longer interactions because the model has no persistent representation of the game's underlying conditions. Similar problems appear in other domains, such as voice AI that must maintain conversation state.

The paper organizes the problem into four dimensions: player action control, game state dynamics, state-observation persistence, and real-time interactive generation. For each dimension, the authors survey existing approaches, group them into families, and lay out their trade-offs.
What counts as a rule
State dynamics is where the gap between generative models and game engines widens fastest. A rule in a game engine says: if the player collects exactly five crests, open the sealed door. A generative model has no equivalent of that rule. It can learn statistical correlations: doors tend to open when the player carries crest-like objects. But it cannot reliably enforce a hard game logic condition across thousands of frames, especially when the condition depends on something that happened ten minutes ago. Designing robust rules for AI systems is a broader challenge, as shown by work on hardware-level inference reliability.
The paper discusses several families of approaches that try to inject state awareness into generative pipelines. One family adds a separate state predictor that runs alongside the video generator, maintaining an explicit map of objects and conditions. Another family embeds state information directly into the latent space of the diffusion model, so the model's own representation carries some persistence. A third family attempts to distill game logic into neural network weights through long-horizon training.
Each has trade-offs. Explicit state predictors are interpretable and debuggable, but they require manual annotation of what counts as state. Learned state embeddings avoid that annotation but can drift over time and are hard to audit when they fail.
90 hours of Black Myth: Wukong
The paper's practical contribution is a data engine built around Black Myth: Wukong, the action RPG developed by Game Science. The team collected over 90 hours of gameplay with frame-aligned player actions, ground-truth game states, and visual observations. Each frame is paired with structured annotations of game conditions: player health, mana, equipped weapon, active abilities, enemy positions, and more.
The authors describe this as a resource for state-aware game world modeling. Researchers can use the dataset to train models that learn to predict not just the next frame, but the next state. The alignment between actions, states, and observations is precise enough to serve as a ground-truth benchmark for any model that claims to maintain persistence. Such benchmark datasets are critical for progress, much like the structured parsing benchmarks in OCR.
The dataset also includes semantic annotations, which are less common in existing gameplay datasets. Instead of just numerical state vectors, the annotations label high-level conditions: the player is in combat, the player is climbing, the boss is below 30 percent health.
Where the field stands
The paper does not claim to solve interactive world generation. What it does is provide a vocabulary for talking about the problem and a concrete resource for working on it. The tone is measured, almost clinical, which is unusual for a field that tends toward breathless announcements about the end of traditional game development.
The authors position their work as a survey with a dataset attached. But the structure of the survey itself is the more interesting contribution. By forcing the field to think in terms of the action-state-observation loop, the paper makes visible what generative models currently skip: the black box of persistent, rule-bound state. This mirrors similar structural insights from other fields, such as the difficulty of measuring true productivity gains from AI coding agents.
Whether the next generation of interactive worlds runs on a physics engine, a diffusion model, or something in between may depend on how seriously the industry takes this question. Right now, the paper suggests, most generative models treat state as an afterthought. That works for a two-minute video clip. For a game that someone actually plays, it does not.
Get the tech essentials in 3 minutes every morning
One email, every weekday, with what actually matters in AI and tech.