Getting Started: Downloading ChilliSource

The ChilliSource game engine is hosted as a Git repository on GitHub. The best way to download a copy of the engine is to clone the repository using Git – a popular distributed revision control system. This makes it very easy to keep up to date with the latest version of the engine.

Alternately you can download the engine as a zip archive.

Clone using SourceTree

SourceTree provides a graphical interface for working with Git which is easier for beginners to get used to. SourceTree is only available on Windows and OSX – Ubuntu users will need to clone using command line or another Git GUI client. The following describes how to clone ChilliSource using SourceTree.

Windows

SourceTree-Win-CloneButton

SourceTree-Win-CloneDialogue

OSX

SourceTree-OSX-CloneButton

SourceTree-OSX-CloneDialogue

The engine can now be found at the chosen Destination Path. For more information on using SourceTree please check out their website.

Clone using Command Line

For those comfortable working on command line it can be easier to clone ChilliSource using the git client directly. The following describes how this can be achieved.

sudo apt-get update
sudo apt-get install git
cd ~/Projects
git clone https://github.com/ChilliWorks/ChilliSource.git

For more information on using the git command line please see the git documentation.

 Next: Creating a Project