Quick Flutter Integration

via CLI

From fresh Flutter project to embedded game engine with a few commands. The game CLI handles project configuration, engine setup, and build management automatically.

Add a hero image in the CMS

CLI-Powered Project Setup

Initialize, scaffold, and configure your Flutter game projects from the command line with built-in engine integration.


game init

Creates a .game.yml configuration file for your project. Specify your engine (--unity or --unreal), project name, and target configuration. The CLI generates the right configuration template for your setup.

Add feature image

game scaffold

Generate a complete Flutter package structure with game engine configuration. Creates a minimal, working project template ready for development. Supports -- engine unity or --engine unreal.

Add feature image

game add

Add a game engine to an existing Flutter project. The CLI modifies your project to include Unity or Unreal Engine support without disrupting your existing code.

Add feature image

game build

Build your Flutter app with an embedded game engine in one step. The CLI handles engine export, file synchronization, and Flutter compilation for Android, iOS, macOS, Windows, and Linux.

Add feature image

Quick Start: game scaffold --name my_game --engine unity — Generate a complete project from scratch

Add to Existing: game add unity — Add engine support to your current Flutter project

Configure: game init --unity — Create configuration file, then game export + game sync to set up engine assets.

Configure:

Frequently Asked Questions