Differences From Artifact [dfbf2cd360]:
- File altar.lua — part of check-in [3354e2aa29] at 2021-07-05 20:43:40 on branch trunk — add support for instantiation callbacks, god tweaks and bug fixes (user: lexi, size: 12816) [annotate] [blame] [check-ins using]
To Artifact [f0ec80311e]:
- File altar.lua — part of check-in [aba5ad057a] at 2021-07-07 15:34:56 on branch trunk — add mounted keg for shelving units, fix altar visuals (user: lexi, size: 12819) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 |
local altar_item_offset = { x = 0, y = -0.3, z = 0 } local log = sorcery.logger('altar') local L = sorcery.lib local range = function(min, max) local span = max - min local val = math.random() * span |
| |
1 2 3 4 5 6 7 8 9 |
local altar_item_offset = {
x = 0, y = -0.3, z = 0.13
}
local log = sorcery.logger('altar')
local L = sorcery.lib
local range = function(min, max)
local span = max - min
local val = math.random() * span
|