Acron for Indie Game Dev
Acron lowers the floor without lowering the ceiling. Start with Python — add C++ when you need speed. An AI assistant that actually knows the engine. Free to build and ship.
pip install acron
The Problem with Other Engines
Most engines were built for 50-person teams. Acron was designed for one person who wants to ship.
Epic launcher, engine versions, platform SDKs. You spend a day downloading before writing a line of code.
One command. Works in a virtualenv. First window opens in under a minute. No account, no launcher.
After years of development, Unity and Unreal take a cut once you cross revenue thresholds — or change the rules mid-game.
The Acron engine is free to use, including for commercial titles. No revenue thresholds to cross and no runtime fee to ship — what you earn is yours.
Ask ChatGPT about your Unreal bug. It gives you a plausible-sounding answer from outdated training data.
RAG over your code + the actual Acron docs. Answers specific to the version and patterns you're using.
Start Simple. Go Deep.
The Entity API gets you a working 3D game in 10 lines. When you need raw performance, the C++ layer is right there — same codebase, no rewrite.
from acron import Acron, Entity, FirstPersonController app = Acron() # A scene in 5 lines ground = Entity(model='plane', scale=32, texture='grass', collider='mesh') Entity(model='cube', texture='brick', position=(2,1,5), collider='box') player = FirstPersonController() # Multiplayer: add 3 more lines # AI assistant: ask how in Studio app.run()
Free engine, AI-assisted Studio, production-ready. The rest is up to you.