Differences From Artifact [4c0283cfa3]:
- File mods/starlit/element.lua — part of check-in [0e67c606c9] at 2024-05-01 16:25:38 on branch trunk — fixes, sounds; add license info (user: lexi, size: 7266) [annotate] [blame] [check-ins using]
To Artifact [25b10aa9d6]:
- File mods/starlit/element.lua — part of check-in [0e7832a24c] at 2024-05-04 22:41:29 on branch trunk — add beginnings of matter compiler UI, check in missing files (user: lexi, size: 7265) [annotate] [blame] [check-ins using]
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 |
_starlit = {
mass = 1e3;
material = {
kind = 'metal';
metal = id;
};
fab = starlit.type.fab {
flag = {smelt= true};
element = comp(1e3);
};
};
});
end)
|
| |
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 |
_starlit = { mass = 1e3; material = { kind = 'metal'; metal = id; }; fab = starlit.type.fab { flag = {smelt=true}; element = comp(1e3); }; }; }); end) |