【优化】优化lateUpdate,修复使用lateupdate报错时会使所有lateupdate失效的问题

dev_chengFeng
gaoxin 2021-03-17 09:52:17 +08:00
parent 7a611cc8b2
commit 268a51c519
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ end
function Game.LateUpdate()
for i, v in ipairs(this.managerList) do
if v.LateUpdate then
v.LateUpdate()
MyPCall(v.LateUpdate)
end
end
end