mirror of
https://github.com/minetest/minetest.git
synced 2025-01-22 05:08:55 +00:00
af3f696423
Some checks are pending
android / build (push) Waiting to run
cpp_lint / clang_tidy (push) Waiting to run
linux / gcc_7 (push) Waiting to run
linux / gcc_14 (push) Waiting to run
linux / clang_7 (push) Waiting to run
linux / clang_18 (push) Waiting to run
linux / clang_11 (PROMETHEUS=1) (push) Waiting to run
lua_lint / Compile and run multiplayer tests (push) Waiting to run
lua_lint / Builtin Luacheck and Unit Tests (push) Waiting to run
macos / build-intel-macos (push) Waiting to run
macos / build-arm-macos-xcode (push) Waiting to run
png_file_checks / png_optimized (push) Waiting to run
whitespace_checks / trailing_whitespaces (push) Waiting to run
whitespace_checks / indent_spaces (push) Waiting to run
whitespace_checks / tabs_lua_api_files (push) Waiting to run
windows / MinGW cross-compiler (${{ matrix.bits }}-bit) (32) (push) Waiting to run
windows / MinGW cross-compiler (${{ matrix.bits }}-bit) (64) (push) Waiting to run
windows / VS 2019 ${{ matrix.config.arch }}-${{ matrix.type }} (map[arch:x64 generator:-G'Visual Studio 16 2019' -A x64 vcpkg_triplet:x64-windows], portable) (push) Waiting to run
windows / VS 2019 ${{ matrix.config.arch }}-${{ matrix.type }} (map[arch:x86 generator:-G'Visual Studio 16 2019' -A Win32 vcpkg_triplet:x86-windows], portable) (push) Waiting to run
52 lines
1.4 KiB
Lua
52 lines
1.4 KiB
Lua
local align_help = "Texture spans over a space of 8×8 nodes"
|
||
local align_help_n = "Tiles looks the same for every node"
|
||
|
||
core.register_node("tiled:tiled", {
|
||
description = "Tiled Node (world-aligned)".."\n"..align_help,
|
||
tiles = {{
|
||
name = "tiled_tiled.png",
|
||
align_style = "world",
|
||
scale = 8,
|
||
}},
|
||
groups = {cracky=3},
|
||
})
|
||
|
||
core.register_node("tiled:tiled_rooted", {
|
||
description =
|
||
"Tiled 'plantlike_rooted' Node (world-aligned)".."\n"..
|
||
"Base node texture spans over a space of 8×8 nodes".."\n"..
|
||
"A plantlike thing grows on top",
|
||
paramtype = "light",
|
||
drawtype = "plantlike_rooted",
|
||
tiles = {{
|
||
name = "tiled_tiled.png",
|
||
align_style = "world",
|
||
scale = 8,
|
||
}},
|
||
special_tiles = {"tiled_tiled_node.png"},
|
||
groups = {cracky=3},
|
||
})
|
||
|
||
core.register_node("tiled:tiled_n", {
|
||
description = "Tiled Node (node-aligned)".."\n"..align_help_n,
|
||
tiles = {{
|
||
name = "tiled_tiled_node.png",
|
||
align_style = "node",
|
||
}},
|
||
groups = {cracky=3},
|
||
})
|
||
|
||
stairs.register_stair_and_slab("tiled_n", "tiled:tiled_n",
|
||
{cracky=3},
|
||
{{name="tiled_tiled_node.png", align_style="node"}},
|
||
"Tiled Stair (node-aligned)".."\n"..align_help_n,
|
||
"Tiled Slab (node-aligned)".."\n"..align_help_n)
|
||
|
||
stairs.register_stair_and_slab("tiled", "tiled:tiled",
|
||
{cracky=3},
|
||
{{name="tiled_tiled.png", align_style="world", scale=8}},
|
||
"Tiled Stair (world-aligned)".."\n"..align_help,
|
||
"Tiled Slab (world-aligned)".."\n"..align_help)
|
||
|
||
|