forked from MineClone5/MineClone5
Add "real" glowing effect for glowing itemframe
This commit is contained in:
parent
ba333d016a
commit
d662fa8bd0
|
@ -31,6 +31,7 @@ minetest.register_entity("extra_mobs:glow_item_frame_item",{
|
||||||
textures = { "blank.png" },
|
textures = { "blank.png" },
|
||||||
_texture = "blank.png",
|
_texture = "blank.png",
|
||||||
_scale = 1,
|
_scale = 1,
|
||||||
|
glow = minetest.LIGHT_MAX,
|
||||||
|
|
||||||
on_activate = function(self, staticdata)
|
on_activate = function(self, staticdata)
|
||||||
if staticdata ~= nil and staticdata ~= "" then
|
if staticdata ~= nil and staticdata ~= "" then
|
||||||
|
@ -166,7 +167,7 @@ minetest.register_node("extra_mobs:glow_item_frame",{
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
|
|
||||||
--FIXME: should only be glowing, no light source. How is that possible with a node?
|
--FIXME: should only be glowing, no light source. How is that possible with a node?
|
||||||
light_source = minetest.LIGHT_MAX,
|
light_source = 1,
|
||||||
|
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
groups = { dig_immediate=3,deco_block=1,dig_by_piston=1,container=7,attached_node_facedir=1 },
|
groups = { dig_immediate=3,deco_block=1,dig_by_piston=1,container=7,attached_node_facedir=1 },
|
||||||
|
|
Loading…
Reference in New Issue