1
0
mirror of https://github.com/paramat/watershed.git synced 2025-07-22 02:00:36 +02:00

Fix water tiles, new jungletrees, set continent parameters

This commit is contained in:
paramat
2014-03-24 02:38:56 +00:00
parent 9f0b9d6137
commit 6c11296eba
4 changed files with 50 additions and 24 deletions

View File

@ -151,7 +151,19 @@ minetest.register_node("watershed:water", {
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}
}
},
special_tiles = {
{
name="default_water_source_animated.png",
animation={type="vertical_frames",
aspect_w=16, aspect_h=16, length=2.0},
backface_culling = false,
}
},
alpha = WATER_ALPHA,
paramtype = "light",