Prefabs such as PickupItem or PickupDocument use a a subprefab called Interaction which allows and handles the player interaction. This prefab has attached a component called Interactive which contains a variable Data referencing a ScriptableObject.

This ScriptableObject is of type InteractionData, which determines how the player will behave when interacting with the object.

By default, these interactions use the InteractionData Pickup, which plays a default pickup animation. We could make a new interaction type if we wanted, for example, to pick up an item from the ground with a different animation.

Creating a new InteractionData can be done by right clicking the Project View and selecting Create/Horror Engine/Interaction

The parameters Name and Icon are not used at the moment but could be used for example if we wanted to show a prompt indicating the focused interaction to the player.

To add a new interaction animation, it first has to be imported in the project and added to the character Animation with a descriptive name, such as PickUpFromGround.

To reference the animation from our InteractionData, we have to create a new AnimatorStateHandle as explained here.

Back on the InteractionData, assign the created Animator State Handle to the variable AnimState.

InteractionDuration should be adjusted to the desired time in the interaction state.

InteractionDelay is the time passed playing the animation before the interaction is triggered.

RotateToInteractive determines if the character rotates automatically towards the interacted object.

Remember to assign your new InteractionData on the Interaction component to use the new interaction behaviour.