-
Notifications
You must be signed in to change notification settings - Fork 6
Introduction
To install AggiEngine simply run the following command.
$ pip install AggiEngineIt is possible that you may still experience issues following the pip installation. If this is the case, first try installing C++ Build Tools 2015. If you're on windows chocolatey should be an easy solution for you.
Once this is installed download Qt Designer. This is for creating .ui files which AggiEngine will use for UI creation
After that is complete install Tiled. And that's it you're ready to start making games with AggiEngine!
First, create a widget base .ui file using Qt Designer and save it in the project.
Now let's make sure your install is working with this basic script.
import AggiEngine as ag
ag.Application(ag.State('test.ui')).run()Note "test.ui" is what I called my .ui file you just replace this with the path to your file.
If everything went smoothly you should a window appear!
