所有,对于这些事件。我的理解如下所示。
if ( bMaintenanceMode ) then
OnMaintUIBefore();
else
OnFirstUIBefore();
endif;
如果当前设置是维护模式。然后触发OnMaintUIBefore
事件。但我无法理解OnUpdateUIBefore
事件。有人可以帮我在下面查看我的问题。
- 什么时候
OnUpdateUIBefore
触发事件? Maintenance
不是Update
吗?- 卸载是
Maintenance
还是Update
?