change firework glow amoung

This commit is contained in:
D00Med 2017-10-23 10:27:59 +10:00
parent 0f4db01959
commit b13c7aab68

View File

@ -29,7 +29,7 @@ minetest.register_entity("fireworks:dummy_entity", {
vertical = false, vertical = false,
texture = self.texture, texture = self.texture,
animation = {type = "vertical_frames", aspect_w = 8, aspect_h = 8, length = 1.00}, animation = {type = "vertical_frames", aspect_w = 8, aspect_h = 8, length = 1.00},
glow = 9 glow = 13
}) })
end end
end) end)
@ -65,7 +65,7 @@ minetest.register_entity("fireworks:firework_"..number.."_rocket", {
vertical = false, vertical = false,
texture = "firework_flare.png", texture = "firework_flare.png",
animation = {type = "vertical_frames", aspect_w = 64, aspect_h = 64, length = 1.00}, animation = {type = "vertical_frames", aspect_w = 64, aspect_h = 64, length = 1.00},
glow = 9 glow = 13
}) })
end end
for i=1,100 do for i=1,100 do
@ -81,7 +81,7 @@ minetest.register_entity("fireworks:firework_"..number.."_rocket", {
vertical = false, vertical = false,
texture = tex1, texture = tex1,
animation = {type = "vertical_frames", aspect_w = 8, aspect_h = 8, length = 1.00}, animation = {type = "vertical_frames", aspect_w = 8, aspect_h = 8, length = 1.00},
glow = 9 glow = 13
}) })
elseif shape == "scatter" then elseif shape == "scatter" then
minetest.add_particle({ minetest.add_particle({
@ -95,7 +95,7 @@ minetest.register_entity("fireworks:firework_"..number.."_rocket", {
vertical = false, vertical = false,
texture = tex1, texture = tex1,
animation = {type = "vertical_frames", aspect_w = 8, aspect_h = 8, length = 1.00}, animation = {type = "vertical_frames", aspect_w = 8, aspect_h = 8, length = 1.00},
glow = 9 glow = 13
}) })
elseif shape == "scatter" then elseif shape == "scatter" then
minetest.add_particle({ minetest.add_particle({
@ -109,7 +109,7 @@ minetest.register_entity("fireworks:firework_"..number.."_rocket", {
vertical = false, vertical = false,
texture = tex1, texture = tex1,
animation = {type = "vertical_frames", aspect_w = 8, aspect_h = 8, length = 1.00}, animation = {type = "vertical_frames", aspect_w = 8, aspect_h = 8, length = 1.00},
glow = 9 glow = 13
}) })
end end
end end
@ -147,7 +147,7 @@ minetest.register_entity("fireworks:firework_"..number.."_rocket", {
vertical = false, vertical = false,
texture = "firework_flare.png", texture = "firework_flare.png",
animation = {type = "vertical_frames", aspect_w = 64, aspect_h = 64, length = 1.00}, animation = {type = "vertical_frames", aspect_w = 64, aspect_h = 64, length = 1.00},
glow = 9 glow = 13
}) })
end end
for i=1,100 do for i=1,100 do
@ -174,7 +174,7 @@ minetest.register_entity("fireworks:firework_"..number.."_rocket", {
vertical = false, vertical = false,
texture = tex1, texture = tex1,
animation = {type = "vertical_frames", aspect_w = 8, aspect_h = 8, length = 1.00}, animation = {type = "vertical_frames", aspect_w = 8, aspect_h = 8, length = 1.00},
glow = 9 glow = 13
}) })
end end
end end
@ -212,7 +212,7 @@ minetest.register_entity("fireworks:firework_"..number.."_rocket", {
vertical = false, vertical = false,
texture = "firework_flare.png", texture = "firework_flare.png",
animation = {type = "vertical_frames", aspect_w = 64, aspect_h = 64, length = 1.00}, animation = {type = "vertical_frames", aspect_w = 64, aspect_h = 64, length = 1.00},
glow = 9 glow = 13
}) })
end end
minetest.add_particle({ minetest.add_particle({
@ -226,7 +226,7 @@ minetest.register_entity("fireworks:firework_"..number.."_rocket", {
vertical = false, vertical = false,
texture = tex1, texture = tex1,
animation = {type = "vertical_frames", aspect_w = 64, aspect_h = 64, length = 1.00}, animation = {type = "vertical_frames", aspect_w = 64, aspect_h = 64, length = 1.00},
glow = 9 glow = 13
}) })
self.object:remove() self.object:remove()
end) end)
@ -298,7 +298,7 @@ minetest.register_tool("fireworks:gun", {
vertical = false, vertical = false,
texture = "firework_rocket_spark.png", texture = "firework_rocket_spark.png",
animation = {type = "vertical_frames", aspect_w = 15, aspect_h = 15, length = 1.00}, animation = {type = "vertical_frames", aspect_w = 15, aspect_h = 15, length = 1.00},
glow = 9 glow = 13
}) })
end) end)
end end
@ -331,7 +331,7 @@ local obj = minetest.env:add_entity({x=pos.x, y=pos.y, z=pos.z}, name.."_rocket
vertical = false, vertical = false,
texture = "firework_rocket_spark.png", texture = "firework_rocket_spark.png",
animation = {type = "vertical_frames", aspect_w = 15, aspect_h = 15, length = 1.00}, animation = {type = "vertical_frames", aspect_w = 15, aspect_h = 15, length = 1.00},
glow = 9 glow = 13
}) })
end) end)
end end