top of page

Chain Spline IN ue4

For the Hollowed project, we had statue mesh's that were meant to signify different aspects of the Stages of Grieving. The poses and color of the statue's emissive were designed to emphasize these Stages.

Purple - Denial, Red - Anger, Blue - Bargaining, Grey - Depression

​

In terms of gameplay the character, Halia, must offer her spirit, Oco, to these statues to trigger events in the game. 

​

Originally the statues would be illuminated gradually and uniformly. I wanted to setup a way for the statues to activate and deactivate. Based on where Oco is set to interact with the statues, Denial, Anger and Depression used the spherical mask that emanates from a point in world space. Oco interacts with the Bargaining statue in the empty hand and rather than using a sphereical mask I chose to use a vertical reveal. I wanted the bag in the statues other hand to be revealed last and a sphereical mask wouldn't have accomplished that.

Louis Hofer, the Programming Lead for Hollowed, set up the rest of the blueprint not shown here but also made a very easy way to animate and feed information into the materials of the statues. By using a single timeline with linear slope from 0-1 the activation and deactivation of the statues could be animated. The level designer would use the exposed parameter "Start Emissive" to define the initial values of the statues. Zero would mean the statue would be off and the timeline would animate to One and illuminate the statue. Conversely if the statue was initially set to One and be illuminated, the timeline would animate to zero and turn off.

My Process:

I highlighted aspects of the blueprint these statues are used in to show the emissive masks is controlled. The only difference in the blueprint implementation is that the Bargaining didn't need a vector input. Within the blueprint for each of these statues in the construction script I had to make the mesh component's material dynamic. I originally tried to set up this step in the Event graph under the "Begin Play" Event but there material tend to be broken when the game began. 

​

In the example of the construction script shown below, there were two mesh components so they were both set to dynamic, but each of the other statues match this flow of logic.

In this blueprint, Louis used the "End Collision Component" to make calculations to determine when the character's spirit would overlap. I used that collision's volume's world location to feed into the vector parameter for the dynamic version of the mesh component's material so the sphere mask knew what point in space to work with. 

 

The "Start Emissive" exposed variable not only determine how the statues were initialized but the value also determine which event using the timeline was called elsewhere in the blueprint.

Vertical Mask Node Network Breakdown

Sphere Mask Node Network Breakdown

bottom of page