Spirit of Science

Info

Project Type: Unity Game for IEGJ

Timeframe: 2022

Video

Product Overview

A top down exploration game setting you to exploring an abandoned factory looking for tools and key-cards while avoiding the unexplained dangers around the place

Project Overview

This was made for the International Educational Game Jam with a team of three artists and two programmers. My role was mainly that of gameplay programmer. I wrote the interaction and movement systems, as well as a few interactions using those systems.

Code

Interaction

When the player clicks, clickable objects near the cursor should be notified that they've been activated. For this, I created an Interactible interface. This interface can then be inherited to clearly mark a component as clickable.

Clicking

The player interaction script triggers any IInteractible components within a radius around wherever the player has clicked. It only does this after ensuring that the clicked object can be reached.