
Relay
C++ to Blueprint Hook Callback InterfaceRelay
Relay is a C++ / BP Library that provides various types of Hook Callbacks via Blueprint Nodes.
Discord: https://discord.gg/Bq7HCMRfjk
This mod is currently limited to the following callback hook types:
Doors:
- doorOpen Post
- doorClose Post
Props:
- actionOptionIndex and Interaction Action value
To register for a hook callback, use CallbackLib "Register For Callback" Node with desired Callback Type. Your actor will receive a Callback Success event if the C++ mod registered the function properly.
Then, Add the CallbackInterface to your Class Settings and Override both ReceieveCallback and RegisterSuccess? and perform desired actions with callback information.
Relay Editor Dev Kit: https://github.com/modestimpala/VotVMods/raw/refs/heads/main/Relay/Relay_DevKit.zip
Dev Kit includes comments to help users implement Callbacks to actors. See Assets/Actors/ActorThatWantsCallbacks for an example.