The engine supports the instantiation and play of different VFX and SFX depending on the surface type.

By default the engine includes a couple example surface types (such as Metal, Grass and Blood) but more surface types can be easily created by right clicking on the Project view and selecting Create/Horror Engine/Surfaces/Surface Type

This surface type can then be assigned to different meshes by attaching the component Surface to the object with a collider. The Type property has to be assigned to reference our new SurfaceType.

In order to specify the VFX or SFX played for this surface, we can add a new entry to the ScriptableObjects SurfaceSFXSelected or SurfaceVFXSelector.

How does it work?

The player model has attached two components that allow the instantiation and play of different VFX and SFX using animation events (Check the Slow Run animation).

These components are VisualEffectsPlayer and SoundEffectsPlayer attached to the player animator.

These components have a list of entries formed by Identifier and Cues which will be played when PlaySFX and PlayVFX are called passing the identifier as the String parameter with the event. (In the screenshot above, the identifier is FootstepL)

Additionally, each entry can optionally reference a specific Selector that will determine which effect to play depending on different conditions specified by the selector. If a Selector is assigned for an, the Cues will be ignored.

As descirbed above, the engine includes two selector classes; SurfaceVFXSelector and SurfaceSFXSelector that allows the player component to play different effects depending on the Surface detected by the SurfaceDetector component attached to the player.

SurfaceDetector will update the detected surface type every time the player component GroundDetector detects a new collider. This will only happen for the layer mask indicated on the GroundDetector component.