The Office

Gameplay Programming

Overview

About the project

The Office features FPS gameplay mechanics developed using Unreal Engine (C++/Blueprints)

Date
November 10, 2023
My Role
Gameplay programmer

The problem

Implement FPS game mechanic: Interactable objects in game level

The purpose of this project was to implement a common FPS mechanic which the player could choose an object to interact with in the game scene. Using the rendering effect of mesh render outline it will be very easy to distinguish which object would be interactable. Using C++ and exposing to blueprints, it would be very productive for a game designer to set in the unreal editor that feature for selected objects.

The solution

To outline the mesh render of objects in game level, a post process volume material was created to detect objects edges lines as common in cel shading effects. In the material, using the custom depth buffer, stencil values determine whether the objects color outline changes or not. The appearance of the objects silhouettes are in:

  •  Black (default color outline) - Stencil Value of 0
  •  Yellow (hovered event by the aim pointer) Stencil Value of 2

Selected objects have the stencil value of 2 with disabled custom depth pass.

For each interactable object, hover and unhover events enables on and off respectively the custom render depth modifying the outline color appearance.

Hover and Unhover events are blueprint implementable events set in base class Interactable.h code:

To be implemented in blueprints

Turns on and off the custom depth render pass for selected objects

Aim Pointer

To help identify interactables objects in the game level, the player has the aim pointer HUD to aid the player where his target is pointing to. UX best practices tell us that feedback should be constant in games. That's why this pointer is always active.

Features

Look

The default behavior of the Aim Pointer aids the player where its target is looking at.

The aim pointer in UMG Editor

The aim pointer follows the FPS controller camera rotation as expected.

When the game starts, it is created in Blueprints and added to the game screen.

Spot

When identifying an interactable in the game level, the aim pointer interface changes to indicate that the interaction is enable to happen on the spotted object. A new game interface is switched in this moment.

  // my first program in C++
  #include 
  using namespace std;

  int main ()
  {
    cout << "Hello World!";
    return 0;
  }