vignette/init.lua

11 lines
271 B
Lua
Raw Normal View History

2018-09-07 10:42:56 -07:00
minetest.register_on_joinplayer(function(player)
player:hud_add({
hud_elem_type = "image",
text = "vignette.png",
position = {x=0, y=0},
scale = {x=-100, y=-100},
alignment = {x=1, y=1},
offset = {x=0, y=0}
})
end)