← back

The Next Game Engine Won't Have a Manual — Arturo Nunez, Nereu

962 views · Aug 18, 2026 · 19:33 min · Watch on YouTube ↗
Takeaway

An AI-native game engine can make creation more accessible by mapping player vocabulary onto reusable engine behaviors.

Summary

  • Nereu's demo builds a controllable animated robot, scenery, rain, and a following camera through natural-language requests.
  • The product shifts interaction from engine-specific components and repeated boilerplate toward familiar game-design concepts and desired behaviors.
  • An asset tag system inspired by entity-component architecture lets reusable systems act on tagged objects, such as player-controlled vehicles.
  • Combining tags supports unconventional creations, including drivable buildings, while the assistant helps users express intent and get unstuck.
game-developmentnatural-language-uiasset-tags
Original description
Ask a coding agent for a camera that follows your character and it will reinvent that camera from scratch, every time, slightly differently. Arturo Nunez's diagnosis is that the context sits on the game engine's vocabulary rather than the game's. Controlling a character in a conventional engine means a mesh, a renderer, an animator, a rigid body, a collider, an audio source, and only then your actual movement logic, nearly all of which is boilerplate that every character in every game already carries.

Nereu inverts that. Everything is an asset, and you attach tags describing intent instead of implementation: character, animated, double jump. Systems then query by tag and move everything marked vehicle and drivable, which is Entity Component System thinking lifted from data oriented design. The pleasant consequence is that nothing stops you tagging a building as drivable and dropping it into a Mario Kart style race. The assistant is there to get you unstuck rather than to one shot a finished game, and the vocabulary it expects is the one tutorials already use: press A to jump, press A again in the air.

The engineering detail worth stealing is how context gets assembled. Rather than feed the whole scene to a model, he borrows level of detail from rendering. Assets near whatever you are editing arrive with their full tag values, distant ones collapse to a position and a type, and the hundred pieces of grass are simply left out.

Speaker info:
https://x.com/arturonereu
  / arturonereu  
https://www.arturonereu.com/

Timestamps:
0:00 - Building a game live by describing it
2:45 - Why making games is hard
4:27 - Ten years at Unity watching the same struggles repeat
6:59 - Powerful engines and LLMs that still do not compose
7:49 - The boilerplate behind controlling a character
8:45 - Everything is an asset, and tags describe intent
9:37 - The asset tag system, and tagging a building as drivable
11:21 - How the prompt gets its context
14:52 - Level of detail, applied to context assembly
16:37 - Getting unstuck rather than one shotting a game
17:28 - World models are a different medium