mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-20 14:23:16 -04:00
New water and lava source texture tile settings
This commit is contained in:
parent
29f1f01f37
commit
737d15272b
1 changed files with 6 additions and 2 deletions
|
@ -446,7 +446,9 @@ minetest.register_node("default:water_source", {
|
|||
inventory_image = minetest.inventorycube("default_water.png"),
|
||||
drawtype = "liquid",
|
||||
tiles = {
|
||||
{name="default_water_source_animated.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=2.0}}
|
||||
{name="default_water_source_animated.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=2.0}},
|
||||
{name="default_water_source_animated.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=2.0}},
|
||||
{name="default_water_flowing_animated.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=0.8}}
|
||||
},
|
||||
special_tiles = {
|
||||
-- New-style water source material (mostly unused)
|
||||
|
@ -510,7 +512,9 @@ minetest.register_node("default:lava_source", {
|
|||
inventory_image = minetest.inventorycube("default_lava.png"),
|
||||
drawtype = "liquid",
|
||||
tiles = {
|
||||
{name="default_lava_source_animated.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=3.0}}
|
||||
{name="default_lava_source_animated.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=3.0}},
|
||||
{name="default_lava_source_animated.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=3.0}},
|
||||
{name="default_lava_flowing_animated.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=3.3}}
|
||||
},
|
||||
special_tiles = {
|
||||
-- New-style lava source material (mostly unused)
|
||||
|
|
Loading…
Add table
Reference in a new issue