Skip to content

Introduction

Brady Langdale edited this page Apr 26, 2021 · 1 revision

Getting started with AggiEngine

Installation

To install AggiEngine simply run the following command.

$ pip install AggiEngine

It 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!

Creating the simplest application

First, create a widget base .ui file using Qt Designer and save it in the project.

Qt Designer

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!

Clone this wiki locally