Skip to content
Adrián Arroyo Calle edited this page May 11, 2014 · 1 revision

#Tutorial 1 In this tutorial I will show you how to make your game for GAJSE without using La Maquinaria de Videojuegos.

##HTML GAJSE games are webpages, GAJSE is the JS library for create graphic adventures in real 3D. So, like any other webpage you will need some HTML code. GAJSE doesn't use a loot of HTML, only the basic. You should create an HTML document with almost 2 things:

  • Script tag for GAJSE
  • <script src="gajse.min.js"></script>
  • Element with an ID "gajse" and a data-gajse attribute
  • <div id="gajse" data-gajse="game/demo.json"></div>

The data-gajse attribute points to the main GAJSE configuration file. That's all. No more HTML required.


Tutorial 2 ->

Clone this wiki locally