top of page
RoguePrototype_BackgroundSlide.png

General Information

  • Genre:

  • Camera/View:

  • Solo and/or Multiplayer:

  • Game Engine:

​

Action, Roguelike

Third Person Camera

Solo

Unreal Engine

unreal.png

Features

  • Stats System

  • Random Spawner

  • AI

  • XP System

Tech

Stats System

Modifiable statistics of the player's character, like speed, fire rate, etc...

The value of a stat changes based on the number of points put in them.

Random Spawner

Spawn of objects (random location and type) according to the size of the room.

There is a spawner in the scene that retrieves the size of the room at the BeginPlay. It then uses this value and a random to spawn the objects.

AI

Enemy that can detect and fire at the player's character.

Use of a state machine to handle the AI's behaviour.

XP Sytem

Levelling up gives skill points to upgrade the character.

A function ModifyLevel is called whenever experience needs to be added/removed.

bottom of page