provides a general Playgui_onWake callback for modules

any module with a modulename::Playgui_onWake now has the capacity to layer thier gui elements on playgui
This commit is contained in:
AzaezelX 2021-01-11 17:34:23 -06:00
parent 5e4008d207
commit 27a35ff104

View file

@ -49,6 +49,8 @@ function PlayGui::onWake(%this)
schedule(0, 0, "refreshCenterTextCtrl");
if ( isFunction( "refreshBottomTextCtrl" ) )
schedule(0, 0, "refreshBottomTextCtrl");
callOnModules("Playgui_onWake");
}
function PlayGui::onSleep(%this)