mirror of
https://github.com/minetest-mods/digilines.git
synced 2024-12-25 02:00:19 +01:00
16 lines
279 B
Lua
16 lines
279 B
Lua
|
digiline.rules = {}
|
||
|
|
||
|
digiline.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}}
|