forked from Mirrorlandia_minetest/digilines
6a2fa5a3e4
This also adds a backwards compat alias so other mods shouldn't break.
16 lines
281 B
Lua
16 lines
281 B
Lua
digilines.rules = {}
|
|
|
|
digilines.rules.default =
|
|
{{x=0, y=0, z=-1},
|
|
{x=1, y=0, z=0},
|
|
{x=-1, y=0, z=0},
|
|
{x=0, y=0, z=1},
|
|
{x=1, y=1, z=0},
|
|
{x=1, y=-1, z=0},
|
|
{x=-1, y=1, z=0},
|
|
{x=-1, y=-1, z=0},
|
|
{x=0, y=1, z=1},
|
|
{x=0, y=-1, z=1},
|
|
{x=0, y=1, z=-1},
|
|
{x=0, y=-1, z=-1}}
|