Difference between revisions of "Tutorial - Gideros Game Template1"
From GiderosMobile
(Created page with "Hello developer! In this tutorial, we will make our first Gideros Game Template you could use and reuse for your games. Suitable for all platforms: PC, mobile, web, ... Thi...") |
|||
(8 intermediate revisions by the same user not shown) | |||
Line 13: | Line 13: | ||
* an '''Exit''' button | * an '''Exit''' button | ||
− | We will build it from scratch and you could personalize, build upon it, to better fit your needs. | + | |
+ | We will build it from scratch and you could personalize, build upon it, add plugins (''cbump'', ''liquidfun'', ...), to better fit your needs. | ||
'''Note: we will make use of many snippets available here on this wiki, eg.: [[ButtonMonster class]], ...''' | '''Note: we will make use of many snippets available here on this wiki, eg.: [[ButtonMonster class]], ...''' | ||
Line 19: | Line 20: | ||
Let's go! | Let's go! | ||
− | * [[Gideros Game Template1 Part 1 | + | * [[Tuto Gideros Game Template1 Part 1 Project Setup]] |
− | + | * [[Tuto Gideros Game Template1 Part 2 Init]] | |
− | + | * [[Tuto Gideros Game Template1 Part 3 Main]] | |
+ | * [[Tuto Gideros Game Template1 Part 4 Transitions]] | ||
+ | * [[Tuto Gideros Game Template1 Part 5 Menu]] | ||
+ | * [[Tuto Gideros Game Template1 Part 6 Options]] | ||
+ | * [[Tuto Gideros Game Template1 Part 7 Game]] | ||
+ | * [[Tuto Gideros Game Template1 Part 8 Player]] '''end and project file ;-)''' | ||
+ | |||
− | '''Next: [[Gideros Game Template1 Part 1 | + | '''Next: [[Tuto Gideros Game Template1 Part 1 Project Setup]]''' |
'''[[Written Tutorials]]'''</br> | '''[[Written Tutorials]]'''</br> | ||
{{GIDEROS IMPORTANT LINKS}} | {{GIDEROS IMPORTANT LINKS}} |
Latest revision as of 20:09, 27 October 2024
Hello developer!
In this tutorial, we will make our first Gideros Game Template you could use and reuse for your games.
Suitable for all platforms: PC, mobile, web, ...
This template will have the following:
- a preloader where you could preload assets, show a splash screen
- a transition scene just in case you would want one
- a Menu scene with buttons to navigate to other scenes
- a Game scene. It will be empty here because that's a template ;-)
- an Options scene with sound control, level difficulty and key remapping
- an Exit button
We will build it from scratch and you could personalize, build upon it, add plugins (cbump, liquidfun, ...), to better fit your needs.
Note: we will make use of many snippets available here on this wiki, eg.: ButtonMonster class, ...
Let's go!
- Tuto Gideros Game Template1 Part 1 Project Setup
- Tuto Gideros Game Template1 Part 2 Init
- Tuto Gideros Game Template1 Part 3 Main
- Tuto Gideros Game Template1 Part 4 Transitions
- Tuto Gideros Game Template1 Part 5 Menu
- Tuto Gideros Game Template1 Part 6 Options
- Tuto Gideros Game Template1 Part 7 Game
- Tuto Gideros Game Template1 Part 8 Player end and project file ;-)
Next: Tuto Gideros Game Template1 Part 1 Project Setup