summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVanessa <vanessa@rainbird.(none)>2013-03-07 19:05:19 -0500
committerVanessa <vanessa@rainbird.(none)>2013-03-07 19:05:19 -0500
commit96f326554ea38b9fd4cac54a4cd50dab4460d9ad (patch)
tree2339c024db049e1ae5511871528873152cffad27
parent0137db6a8a6a62b9dde9c1457ddda17f307c4b30 (diff)
Added highlighting of hotbar and craft result in formspec images
Minor tweak to code to allow for slightly increased size (added 10x10 px).
-rw-r--r--unified_inventory/api.lua14
-rw-r--r--unified_inventory/textures/ui_bags_lg_form.pngbin11442 -> 13920 bytes
-rw-r--r--unified_inventory/textures/ui_bags_main_form.pngbin8286 -> 10390 bytes
-rw-r--r--unified_inventory/textures/ui_bags_med_form.pngbin9999 -> 12230 bytes
-rw-r--r--unified_inventory/textures/ui_bags_sm_form.pngbin8554 -> 10885 bytes
-rw-r--r--unified_inventory/textures/ui_craftguide_form.pngbin10500 -> 14631 bytes
-rw-r--r--unified_inventory/textures/ui_crafting_form.pngbin10743 -> 15015 bytes
-rw-r--r--unified_inventory/textures/ui_misc_form.pngbin7098 -> 9354 bytes
8 files changed, 7 insertions, 7 deletions
diff --git a/unified_inventory/api.lua b/unified_inventory/api.lua
index 4a85dc6..029ae68 100644
--- a/unified_inventory/api.lua
+++ b/unified_inventory/api.lua
@@ -129,27 +129,27 @@ unified_inventory.get_formspec = function(player,page)
-- backgrounds
formspec = formspec .. "background[-0.19,-0.2,;14.38,10.55;ui_form_bg.png]"
if page=="craft" then
- formspec = formspec .. "background[0.12,1.05,;7.8,7.4;ui_crafting_form.png]"
+ formspec = formspec .. "background[0.06,0.99,;7.92,7.52;ui_crafting_form.png]"
end
if page=="craftguide" then
- formspec = formspec .. "background[0.12,1.05,;7.8,7.4;ui_craftguide_form.png]"
+ formspec = formspec .. "background[0.06,0.99,;7.92,7.52;ui_craftguide_form.png]"
end
if page=="misc" then
- formspec = formspec .. "background[0.12,1.05,;7.8,7.4;ui_misc_form.png]"
+ formspec = formspec .. "background[0.06,0.99,;7.92,7.52;ui_misc_form.png]"
end
if page=="bags" then
- formspec = formspec .. "background[0.12,1.05,;7.8,7.4;ui_bags_main_form.png]"
+ formspec = formspec .. "background[0.06,0.99,;7.92,7.52;ui_bags_main_form.png]"
end
for i=1,4 do
if page=="bag"..i then
local slots = player:get_inventory():get_stack(page, 1):get_definition().groups.bagslots
if slots == 8 then
- formspec = formspec .. "background[0.12,1.05,;7.8,7.4;ui_bags_sm_form.png]"
+ formspec = formspec .. "background[0.06,0.99,;7.92,7.52;ui_bags_sm_form.png]"
elseif slots == 16 then
- formspec = formspec .. "background[0.12,1.05,;7.8,7.4;ui_bags_med_form.png]"
+ formspec = formspec .. "background[0.06,0.99,;7.92,7.52;ui_bags_med_form.png]"
elseif slots == 24 then
- formspec = formspec .. "background[0.12,1.05,;7.8,7.4;ui_bags_lg_form.png]"
+ formspec = formspec .. "background[0.06,0.99,;7.92,7.52;ui_bags_lg_form.png]"
end
end
end
diff --git a/unified_inventory/textures/ui_bags_lg_form.png b/unified_inventory/textures/ui_bags_lg_form.png
index de62e21..15f511d 100644
--- a/unified_inventory/textures/ui_bags_lg_form.png
+++ b/unified_inventory/textures/ui_bags_lg_form.png
Binary files differ
diff --git a/unified_inventory/textures/ui_bags_main_form.png b/unified_inventory/textures/ui_bags_main_form.png
index 11cb05d..26e6938 100644
--- a/unified_inventory/textures/ui_bags_main_form.png
+++ b/unified_inventory/textures/ui_bags_main_form.png
Binary files differ
diff --git a/unified_inventory/textures/ui_bags_med_form.png b/unified_inventory/textures/ui_bags_med_form.png
index 77b89df..f786806 100644
--- a/unified_inventory/textures/ui_bags_med_form.png
+++ b/unified_inventory/textures/ui_bags_med_form.png
Binary files differ
diff --git a/unified_inventory/textures/ui_bags_sm_form.png b/unified_inventory/textures/ui_bags_sm_form.png
index f0af238..c77ff7c 100644
--- a/unified_inventory/textures/ui_bags_sm_form.png
+++ b/unified_inventory/textures/ui_bags_sm_form.png
Binary files differ
diff --git a/unified_inventory/textures/ui_craftguide_form.png b/unified_inventory/textures/ui_craftguide_form.png
index 7dbfa61..c0078de 100644
--- a/unified_inventory/textures/ui_craftguide_form.png
+++ b/unified_inventory/textures/ui_craftguide_form.png
Binary files differ
diff --git a/unified_inventory/textures/ui_crafting_form.png b/unified_inventory/textures/ui_crafting_form.png
index 1eaea56..bd21046 100644
--- a/unified_inventory/textures/ui_crafting_form.png
+++ b/unified_inventory/textures/ui_crafting_form.png
Binary files differ
diff --git a/unified_inventory/textures/ui_misc_form.png b/unified_inventory/textures/ui_misc_form.png
index 103900c..d34d326 100644
--- a/unified_inventory/textures/ui_misc_form.png
+++ b/unified_inventory/textures/ui_misc_form.png
Binary files differ