Skip to content

Setting everything up

Introduction

Welcome to our fusion-engine tutorials! Here you can learn about our engine and how to use it! This will go easy over everything you need to know to start programming with fusion!

So this tutorial is made to setup everything, so you can start programming with fusion-engine! But if you already have everything setup then head over to tutorial 2: basic rendering

Installing

So firstly we need to install fusion-engine. We have our package hoster at pypi so you can easly install it by running:

  pip install fusion-engine

Importing

Now we need to import fusion-engine to our project. We do it like this:

  import fusionengine as fusion

Ending

That was it, our engine is now setup! Now every function works from our main variable, as you might see later.