Skip to content

Building

How to build

  1. Clone the project

  2. Install python

  3. Install scons via pip with

    Terminal window
    pip install scons

    and make sure to put scons on your PATH or replace “scons” with a scons run command

  4. Run this command

    Setting up project source...
    python setup.py
  5. and build the project with

    Building plugin for current platform...
    python build.py

    There is a prompt how it should start Godot (if godot is on PATH) to test the addon fast directly.

    or run

    Building for DEBUG Godot project exports...
    scons

    and

    Building for RELEASE Godot project exports...
    scons target=template_release
  6. Now the addon should be installed in the project folder of the repo and can be exported with

    Exporting zip and plugin demos...
    python release.py

MacOS Support