Thomas Billett


The Penumbra - CitraLux Studios


Grade Awarded - 2:1

Introduction

The ‘Penumbra’ is a Virtual Reality stealth game, set in a fictional world based upon early 20th century noir movement, popularised by Hollywood in the 1940s/50s. The player plays as a Penumbra, an oppressed race, persecuted for their ability to exist in both light and dark within a world ruled by Lumens and shade (Races that exist solely in the light and the shadow respectively).
The objective is to escape imprisonment and navigate this dystopian environment uncovering the worlds shadowy past. Ultimately aiming to break the penumbra out of their servitude. To aid the player’s journey they must steal a highly experimental light manipulation device which can force either the Lumen or the Shade out of existence, thus enabling the player to safely traverse their hostile surroundings.


My Roles

Contributions

A more detailed version of my roles and contributions is further below


Enemy AI

To create the AI, I decided to use behaviour trees for the project. This was for several reasons:

I used a package from the asset store to avoid having to create a behaviour tree system from scratch which would have taken precious time from the project see below

Find Player

I began by creating a node which would detect the player, so that only enemies close to the player would engage. I went with a 'field of view' cone approach, by checking collisions in sphere then checking if there is a valid angle to the player.


Interaction Mechanic

This mechanic was responsible for making the shades(beings of dark) disappear when they entered any light source, only reappearing once exiting the source. While doing the inverse for the lumen(beings of light), only when entering the light would the lumen become visible.
This enabled interesting gameplay options, with another mechanic the light device. This device allowed the player to move light sources in the level to other empty points.

Light Interaction

First I created two different tags, one for shades and the other for lumen(light). Then I set the enemies to a default state, since all enemies did not start in a light source. The shades were active by default, with the lumen being deactivated. Then once entering a light source, a collider would represent the area of that light.
Since the enemies were already in the correct state, all that was needed was to invert the boolean. Activating the lumen, while deactivating the shade. The same function would be called once the enemies left the light source.