diff options
author | cheapie <no-email-for-you@example.com> | 2024-05-27 13:32:11 -0500 |
---|---|---|
committer | cheapie <no-email-for-you@example.com> | 2024-05-27 13:32:11 -0500 |
commit | 4ae175d93418c5dd9b14bbaad83c1d08c8a61644 (patch) | |
tree | 5c97822e54593014a7ebc7886660c4e22a1c2247 /infrastructure/advanced_automatic_warning_device.lua | |
parent | 97052d1579398e8f41239d8fbd7be6a6ae947dd1 (diff) | |
download | roads-master.tar roads-master.tar.gz roads-master.tar.bz2 roads-master.tar.xz roads-master.zip |
Diffstat (limited to 'infrastructure/advanced_automatic_warning_device.lua')
-rw-r--r-- | infrastructure/advanced_automatic_warning_device.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/infrastructure/advanced_automatic_warning_device.lua b/infrastructure/advanced_automatic_warning_device.lua index 1049c56..0365d07 100644 --- a/infrastructure/advanced_automatic_warning_device.lua +++ b/infrastructure/advanced_automatic_warning_device.lua @@ -201,6 +201,7 @@ minetest.register_node("infrastructure:automatic_warning_device_top", { "infrastructure_automatic_warning_device_top_side.png", "infrastructure_automatic_warning_device_top.png" }, + use_texture_alpha = "clip", on_destruct = infrastructure.stop_bell, drawtype = "nodebox", paramtype = "light", @@ -231,6 +232,7 @@ minetest.register_node("infrastructure:automatic_warning_device_middle_right_on" "infrastructure_automatic_warning_device_middle_right_side.png", {name="infrastructure_automatic_warning_device_middle_right_anim.png",animation={type="vertical_frames", aspect_w=64, aspect_h=64, length=1.5}} }, + use_texture_alpha = "clip", drawtype = "nodebox", paramtype = "light", paramtype2 = "facedir", @@ -259,6 +261,7 @@ minetest.register_node("infrastructure:automatic_warning_device_middle_right_off "infrastructure_automatic_warning_device_middle_right_side.png", "infrastructure_automatic_warning_device_middle_right_off.png" }, + use_texture_alpha = "clip", drawtype = "nodebox", paramtype = "light", paramtype2 = "facedir", @@ -286,6 +289,7 @@ minetest.register_node("infrastructure:automatic_warning_device_middle_left_on", "infrastructure_automatic_warning_device_middle_left_side.png", {name="infrastructure_automatic_warning_device_middle_left_anim.png",animation={type="vertical_frames", aspect_w=64, aspect_h=64, length=1.5}} }, + use_texture_alpha = "clip", drawtype = "nodebox", paramtype = "light", paramtype2 = "facedir", @@ -314,6 +318,7 @@ minetest.register_node("infrastructure:automatic_warning_device_middle_left_off" "infrastructure_automatic_warning_device_middle_left_side.png", "infrastructure_automatic_warning_device_middle_left_off.png" }, + use_texture_alpha = "clip", drawtype = "nodebox", paramtype = "light", paramtype2 = "facedir", @@ -341,6 +346,7 @@ minetest.register_node("infrastructure:automatic_warning_device_middle_center_on "infrastructure_automatic_warning_device_middle_center_side.png", {name="infrastructure_automatic_warning_device_middle_center_anim.png",animation={type="vertical_frames", aspect_w=64, aspect_h=64, length=1.5}} }, + use_texture_alpha = "clip", drawtype = "nodebox", paramtype = "light", paramtype2 = "facedir", @@ -375,6 +381,7 @@ minetest.register_node("infrastructure:automatic_warning_device_middle_center_of "infrastructure_automatic_warning_device_middle_center_side.png", "infrastructure_automatic_warning_device_middle_center_off.png" }, + use_texture_alpha = "clip", drawtype = "nodebox", paramtype = "light", paramtype2 = "facedir", @@ -408,6 +415,7 @@ minetest.register_node("infrastructure:automatic_warning_device_middle", { "infrastructure_automatic_warning_device_middle_side.png", "infrastructure_automatic_warning_device_middle.png" }, + use_texture_alpha = "clip", drawtype = "nodebox", paramtype = "light", paramtype2 = "facedir", |