forked from nalc/nalc_game
Add icon overlay to shelf inventory slots
This commit is contained in:
@ -17,3 +17,6 @@ The following textures were modified by Thomas-S (CC BY-SA 3.0):
|
||||
vessels_drinking_glass_inv.png
|
||||
vessels_glass_bottle.png
|
||||
vessels_steel_bottle.png
|
||||
|
||||
The following texture was created by Wuzzy (CC BY-SA 3.0):
|
||||
vessels_glass_bottle_slot.png (based on vessels_glass_bottle.png)
|
||||
|
@ -13,6 +13,18 @@ local vessels_shelf_formspec =
|
||||
"listring[current_player;main]" ..
|
||||
default.get_hotbar_bg(0, 2.85)
|
||||
|
||||
-- Inventory slots overlay
|
||||
local vx, vy = 0, 0.3
|
||||
for i = 1,16 do
|
||||
if i == 9 then
|
||||
vx = 0
|
||||
vy = vy + 1
|
||||
end
|
||||
vessels_shelf_formspec = vessels_shelf_formspec ..
|
||||
"image["..vx..","..vy..";1,1;vessels_glass_bottle_slot.png]"
|
||||
vx = vx + 1
|
||||
end
|
||||
|
||||
minetest.register_node("vessels:shelf", {
|
||||
description = "Vessels Shelf",
|
||||
tiles = {"default_wood.png", "default_wood.png", "default_wood.png",
|
||||
|
BIN
mods/vessels/textures/vessels_glass_bottle_slot.png
Normal file
BIN
mods/vessels/textures/vessels_glass_bottle_slot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 196 B |
Reference in New Issue
Block a user