Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions mods/sbz_bio/misc.lua
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ minetest.register_node("sbz_bio:airlock", {
tiles = { { name = "airlock.png^[opacity:192", animation = { type = "vertical_frames", length = 0.25 } } },
use_texture_alpha = "blend",
post_effect_color = "#a0ffff40",
post_effect_color_shaded = true,
paramtype = "light",
sunlight_propagates = true,
walkable = false,
Expand Down
1 change: 1 addition & 0 deletions mods/sbz_bio/trees.lua
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ sbz_api.register_leaves(
},
light_source = 1,
post_effect_color = '#ffc0cb5F',
post_effect_color_shaded = true,
radius = 3,
tree = 'sbz_bio:colorium_tree',
tree_drop = {
Expand Down
2 changes: 2 additions & 0 deletions mods/sbz_chem/elements.lua
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ sbz_api.register_element = function(name, color, description, def, mod)
radiation_resistance = rad_resistance * 16,
},
post_effect_color = color .. '7F',
post_effect_color_shaded = true,
paramtype = 'light',
walkable = false,
pointable = false,
Expand Down Expand Up @@ -141,6 +142,7 @@ sbz_api.register_element = function(name, color, description, def, mod)
radiation_resistance = rad_resistance,
},
post_effect_color = color .. '7F',
post_effect_color_shaded = true,
paramtype = 'light',
paramtype2 = 'flowingliquid',
walkable = false,
Expand Down
2 changes: 2 additions & 0 deletions mods/sbz_chem/radiation.lua
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,7 @@ core.register_node('sbz_chem:radon', {
}, -- not radioactive so that maybe its more performant?
sunlight_propagates = true,
post_effect_color = '#6abe3032',
post_effect_color_shaded = true,
walkable = false,
buildable_to = true,
pointable = false,
Expand Down Expand Up @@ -328,6 +329,7 @@ core.register_node('sbz_chem:radioactive_water', {
groups = { liquid = 3, habitat_conducts = 1, not_in_creative_inventory = 1, weak_radioactive = 80 },
light_source = 14,
post_effect_color = water_color,
post_effect_color_shaded = true,
paramtype = 'light',
walkable = false,
pointable = false,
Expand Down
3 changes: 3 additions & 0 deletions mods/sbz_planets/planet_nodes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ core.register_node('sbz_planets:snow', {
climbable = true,
move_resistance = 1,
post_effect_color = '#ffffff9f',
post_effect_color_shaded = true,
sunlight_propagates = true,
drowning = 0.5,
liquid_alternative_flowing = 'sbz_planets:snow_layer',
Expand Down Expand Up @@ -213,6 +214,7 @@ core.register_node('sbz_planets:snow_layer', {
walkable = false,
climbable = false,
post_effect_color = '#ffffff9f',
post_effect_color_shaded = true,
sunlight_propagates = true,
drop = 'sbz_planets:snowball',
})
Expand Down Expand Up @@ -244,6 +246,7 @@ core.register_node('sbz_planets:water_source_nofall', {
use_texture_alpha = 'blend',
groups = { liquid = 3, habitat_conducts = 1, transparent = 1, liquid_capturable = 0, water = 1 },
post_effect_color = water_color,
post_effect_color_shaded = true,
paramtype = 'light',
walkable = false,
pointable = false,
Expand Down
2 changes: 2 additions & 0 deletions mods/sbz_resources/water.lua
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ minetest.register_node("sbz_resources:water_source", {
use_texture_alpha = "blend",
groups = { ui_fluid = 1, chem_element = 1, no_chem_ui = 1, liquid = 3, habitat_conducts = 1, transparent = 1, liquid_capturable = 1, water = 1, cold = 5 },
post_effect_color = water_color,
post_effect_color_shaded = true,
paramtype = "light",
sunlight_propagates = true,
walkable = false,
Expand Down Expand Up @@ -77,6 +78,7 @@ minetest.register_node("sbz_resources:water_flowing", {
use_texture_alpha = "blend",
groups = { liquid = 3, habitat_conducts = 1, transparent = 1, not_in_creative_inventory = 1, water = 1, cold = 5 },
post_effect_color = water_color,
post_effect_color_shaded = true,
paramtype = "light",
paramtype2 = "flowingliquid",
walkable = false,
Expand Down