Skip to main content

Infinite Runner Tutorial

This tutorial will show you how to make a complete game loop using the Genies SDK from scratch. The game will be an infinite runner which means the player will try to dodge enemies for as long as possible.

Test Game

Topics

Here are the topics this tutorial will cover:

  • Creating a game loop using a state machine
  • Spawning and animating an Avatar
  • Moving an Avatar with user input
  • Using object pooling to spawn enemies
  • Collision between enemies and the player
  • Using the MegaStylizer to an enemy mesh
  • Adding a custom animation for the Avatar
  • Creating a score that increases over time
  • Using Cloud Save to store a personal and global high score
  • Building the project for mobile testing
  • Sharing the project with friends

Requirements

In order to complete this tutorial, make sure you completed the following:

  1. Created a Unity project that contains the Genies SDK (Getting Started tutorial)
  2. Installed and setup VS Code to use TypeScript (VS Code page)

Pages