调整主线程不同模块刷新顺序

This commit is contained in:
MrZ626
2021-04-09 22:07:54 +08:00
parent ea882e9611
commit e8650525b2

View File

@@ -504,15 +504,15 @@ function love.run()
--UPDATE --UPDATE
STEP() STEP()
TASK.update() TASK.update()
WS.update(dt)
VOC.update() VOC.update()
BG.update(dt) BG.update(dt)
SYSFX.update(dt) SYSFX.update(dt)
TEXT.update() WIDGET.update()--Widgets animation
if SCN.update then SCN.update(dt)end--Scene Updater if SCN.update then SCN.update(dt)end--Scene Updater
if SCN.swapping then SCN.swapUpdate()end--Scene swapping animation if SCN.swapping then SCN.swapUpdate()end--Scene swapping animation
WIDGET.update()--Widgets animation TEXT.update()
LOG.update() LOG.update()
WS.update(dt)
--DRAW --DRAW
if not MINI()then if not MINI()then