RegisterEventsWhileEquippedAndEnabledInternal

MatB

New member
The documentation for Actions Modules and Groups states: "The RegisterEventsWhileEquippedAndEnabledInternal function is particularly important as it allows the ItemAction to listen to certain events only while the Item is equipped and the module is enabled. It is a good place to listen to AnimationEventTrigger events or ability events."

However, I cannot find any function of this name in the codebase. Why is that?
 
Ah, it got renamed to:
"UpdateRegisteredEventsInternal"
to be shorter

it's a virutal funtion that can be overriden in the ActionModule base class.
Check out the other ActionModules to see examples on how it is setup.

I will update the documentation
 
Top