Kha

Multimedia Framework

Download

Available for Windows, OS X and Linux. You can get Kode Studio or check out Kha from GitHub.

Kode Studio the complete package

You can get Kode Studio via Steam, the Microsoft Store or download it directly from GitHub. It is available for Windows, macOS and Linux.

To get started, just run it and open a directory (File -> Open Folder) containing a Kha project - or open an empty folder and hit the "Init Kha Project" command (Press F1, type Kha, click it).

More details.

GitHub

This workflow needs git and Node.js (v8.0+) already installed on your computer. Kha projects are usually handled using git submodules so that every dependency is properly versioned. Even the Haxe compiler itself is just a submodule.

You can start a new project by cloning the Empty template:

git clone --recursive https://github.com/Kha-Samples/Empty.git

If you already have a git project, to add Kha as submodule, go to the project directory in a console or command prompt and type:

git submodule add https://github.com/Kode/Kha

git submodule update --init --recursive

Then to update the submodules in your project you can do it with:

git submodule foreach --recursive git pull origin master