Fix deprecated alpha / use_texture_alpha use
This commit is contained in:
parent
c1b236b4e3
commit
08b13c9efb
12 changed files with 14 additions and 4 deletions
|
@ -2213,7 +2213,7 @@ minetest.register_node("default:water_source", {
|
|||
},
|
||||
},
|
||||
},
|
||||
alpha = 191,
|
||||
use_texture_alpha = "blend",
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
pointable = false,
|
||||
|
@ -2258,7 +2258,7 @@ minetest.register_node("default:water_flowing", {
|
|||
},
|
||||
},
|
||||
},
|
||||
alpha = 191,
|
||||
use_texture_alpha = "blend",
|
||||
paramtype = "light",
|
||||
paramtype2 = "flowingliquid",
|
||||
walkable = false,
|
||||
|
@ -2304,7 +2304,7 @@ minetest.register_node("default:river_water_source", {
|
|||
},
|
||||
},
|
||||
},
|
||||
alpha = 160,
|
||||
use_texture_alpha = "blend",
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
pointable = false,
|
||||
|
@ -2354,7 +2354,7 @@ minetest.register_node("default:river_water_flowing", {
|
|||
},
|
||||
},
|
||||
},
|
||||
alpha = 160,
|
||||
use_texture_alpha = "blend",
|
||||
paramtype = "light",
|
||||
paramtype2 = "flowingliquid",
|
||||
walkable = false,
|
||||
|
@ -2578,6 +2578,7 @@ local function register_sign(material, desc, def)
|
|||
sunlight_propagates = true,
|
||||
is_ground_content = false,
|
||||
walkable = false,
|
||||
use_texture_alpha = "opaque",
|
||||
node_box = {
|
||||
type = "wallmounted",
|
||||
wall_top = {-0.4375, 0.4375, -0.3125, 0.4375, 0.5, 0.3125},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue