Acron

Make the Game.
Keep the Money.

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.

Terminal pip install acron
Start Building Free See Pricing

Designed for Big Studios.
Sold to Everyone.

Most engines were built for 50-person teams. Acron was designed for one person who wants to ship.

70 GB download to get started

Epic launcher, engine versions, platform SDKs. You spend a day downloading before writing a line of code.

pip install acron — 30 seconds

One command. Works in a virtualenv. First window opens in under a minute. No account, no launcher.

Royalties when you finally earn

After years of development, Unity and Unreal take a cut once you cross revenue thresholds — or change the rules mid-game.

Free to build and ship

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.

Generic AI that doesn't know the engine

Ask ChatGPT about your Unreal bug. It gives you a plausible-sounding answer from outdated training data.

Studio AI that knows your project and Acron

RAG over your code + the actual Acron docs. Answers specific to the version and patterns you're using.

High-Level Python.
Low-Level C++ When You Want.

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.

  • Blueprint editor in Studio — visual logic for non-programmers
  • Python scripting — 3 lines to a moving character
  • C++ extensions — drop down for physics-heavy or render-critical code
  • Built-in PBR, physics, audio, multiplayer — nothing to install separately
main.py — your first game
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()

Ship Your Game.
Keep Your Revenue.

Free engine, AI-assisted Studio, production-ready. The rest is up to you.