#460 added yields throughout main UI rendering

This commit is contained in:
Mikayla Fischler
2024-04-07 20:21:57 -04:00
parent 92a4277f73
commit 1504247b33
4 changed files with 16 additions and 0 deletions

View File

@@ -250,6 +250,7 @@ local function init(main)
local y_offset = y_ofs(i)
unit_flow(main, flow_x, 5 + y_offset, #water_pipes == 0, units[i])
table.insert(po_pipes, pipe(0, 3 + y_offset, 4, 0, colors.cyan, true, true))
util.nop()
end
PipeNetwork{parent=main,x=139,y=15,pipes=po_pipes,bg=style.theme.bg}
@@ -335,6 +336,8 @@ local function init(main)
end
end
util.nop()
---------
-- SPS --
---------