Updated homedecor (with meshes)
- Updated homedecor - Used script to get the meshes back
@ -1,32 +1,26 @@
|
||||
minetest.register_abm({
|
||||
nodenames = {
|
||||
"fake_fire:fake_fire",
|
||||
"fake_fire:ice_fire",
|
||||
"fake_fire:chimney_top_stone",
|
||||
"fake_fire:chimney_top_sandstone"
|
||||
},
|
||||
"fake_fire:fake_fire",
|
||||
"fake_fire:ice_fire",
|
||||
"fake_fire:chimney_top_stone",
|
||||
"fake_fire:chimney_top_sandstone"
|
||||
},
|
||||
interval = 1,
|
||||
chance = 2,
|
||||
action = function(pos, node)
|
||||
if minetest.get_node({x=pos.x, y=pos.y+1.0, z=pos.z}).name == "air"
|
||||
and minetest.get_node({x=pos.x, y=pos.y+2.0, z=pos.z}).name == "air" then
|
||||
local image_number = math.random(4)
|
||||
minetest.add_particlespawner({
|
||||
amount = 6,
|
||||
time = 1,
|
||||
minpos = {x=pos.x-0.25, y=pos.y+0.4, z=pos.z-0.25},
|
||||
maxpos = {x=pos.x+0.25, y=pos.y+8, z=pos.z+0.25},
|
||||
minvel = {x=-0.2, y=0.3, z=-0.2},
|
||||
maxvel = {x=0.2, y=1, z=0.2},
|
||||
minacc = {x=0,y=0,z=0},
|
||||
maxacc = {x=0,y=0,z=0},
|
||||
minexptime = 0.5,
|
||||
maxexptime = 3,
|
||||
minsize = 2,
|
||||
maxsize = 10,
|
||||
collisiondetection = false,
|
||||
texture = "smoke_particle_"..image_number..".png",
|
||||
})
|
||||
and minetest.get_node({x=pos.x, y=pos.y+2.0, z=pos.z}).name == "air" then
|
||||
local image_number = math.random(4)
|
||||
minetest.add_particlespawner({
|
||||
amount = 6, time = 1, collisiondetection = false,
|
||||
minpos = {x=pos.x-0.25, y=pos.y+0.4, z=pos.z-0.25},
|
||||
maxpos = {x=pos.x+0.25, y=pos.y+8, z=pos.z+0.25},
|
||||
minvel = {x=-0.2, y=0.3, z=-0.2}, maxvel = {x=0.2, y=1, z=0.2},
|
||||
minacc = {x=0,y=0,z=0}, maxacc = {x=0,y=0,z=0},
|
||||
minexptime = 0.5, maxexptime = 3,
|
||||
minsize = 2, maxsize = 10,
|
||||
texture = "smoke_particle_"..image_number..".png",
|
||||
})
|
||||
end
|
||||
end
|
||||
})
|
||||
|
0
mods/homedecor_modpack/fake_fire/textures/chimney_top_sandstone.png
Executable file → Normal file
Before Width: | Height: | Size: 615 B After Width: | Height: | Size: 615 B |
0
mods/homedecor_modpack/fake_fire/textures/chimney_top_stone.png
Executable file → Normal file
Before Width: | Height: | Size: 351 B After Width: | Height: | Size: 351 B |
0
mods/homedecor_modpack/fake_fire/textures/embers_animated.png
Executable file → Normal file
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
0
mods/homedecor_modpack/fake_fire/textures/fake_fire.png
Executable file → Normal file
Before Width: | Height: | Size: 732 B After Width: | Height: | Size: 732 B |
0
mods/homedecor_modpack/fake_fire/textures/fake_fire_animated.png
Executable file → Normal file
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 4.6 KiB |
Before Width: | Height: | Size: 4.6 KiB |
0
mods/homedecor_modpack/fake_fire/textures/fake_fire_embers.png
Executable file → Normal file
Before Width: | Height: | Size: 312 B After Width: | Height: | Size: 312 B |
0
mods/homedecor_modpack/fake_fire/textures/flint.png
Executable file → Normal file
Before Width: | Height: | Size: 276 B After Width: | Height: | Size: 276 B |
0
mods/homedecor_modpack/fake_fire/textures/flint_and_steel.png
Executable file → Normal file
Before Width: | Height: | Size: 505 B After Width: | Height: | Size: 505 B |
0
mods/homedecor_modpack/fake_fire/textures/ice_fire.png
Executable file → Normal file
Before Width: | Height: | Size: 662 B After Width: | Height: | Size: 662 B |
0
mods/homedecor_modpack/fake_fire/textures/ice_fire_animated.png
Executable file → Normal file
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
0
mods/homedecor_modpack/fake_fire/textures/smoke_particle_1.png
Executable file → Normal file
Before Width: | Height: | Size: 688 B After Width: | Height: | Size: 688 B |
0
mods/homedecor_modpack/fake_fire/textures/smoke_particle_2.png
Executable file → Normal file
Before Width: | Height: | Size: 642 B After Width: | Height: | Size: 642 B |
0
mods/homedecor_modpack/fake_fire/textures/smoke_particle_3.png
Executable file → Normal file
Before Width: | Height: | Size: 670 B After Width: | Height: | Size: 670 B |
0
mods/homedecor_modpack/fake_fire/textures/smoke_particle_4.png
Executable file → Normal file
Before Width: | Height: | Size: 666 B After Width: | Height: | Size: 666 B |