Module Managers
// This function is called when a module is mounted anywhere on the vehicle
protected override void OnModuleMounted(Module module)
{
// Do something with the module
}
// This function is called when a module is unmounted anywhere on the vehicle
protected override void OnModuleUnmounted(Module module)
{
// Do something with the module
}Last updated
Was this helpful?