Differences From Artifact [ac25f2dec5]:
- File mods/starlit/store.lua — part of check-in [3df08bd5ac] at 2024-05-06 16:20:04 on branch trunk — complete (-ish) matter compiler UI (power drain still missing), add printable chemical light (user: lexi, size: 1856) [annotate] [blame] [check-ins using]
To Artifact [49ffbb2ad8]:
- File mods/starlit/store.lua — part of check-in [52a4f364ac] at 2024-05-07 03:45:58 on branch trunk — compiler now draws power, better compile job progress bars, stats screen refreshes (user: lexi, size: 1907) [annotate] [blame] [check-ins using]
23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
) end starlit.store.compilerJob = G.struct { schematic = T.str; cyclesLeft = T.u64; timeLeft = T.decimal; } starlit.store.persona = G.struct { name = T.str; species = T.str; speciesVariant = T.str; background = T.str; |
> > |
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
) end starlit.store.compilerJob = G.struct { schematic = T.str; cyclesLeft = T.u64; timeLeft = T.decimal; powerLeft = T.decimal; numinaLeft = T.decimal; } starlit.store.persona = G.struct { name = T.str; species = T.str; speciesVariant = T.str; background = T.str; |