From 4a5539748a0819e3cfffae0c060d0dadcbd63d4c Mon Sep 17 00:00:00 2001 From: Pierre-Yves Rollo Date: Wed, 12 Dec 2018 21:10:40 +0100 Subject: [PATCH] Added keyboard --- functions.lua | 17 +- nodes.lua | 79 +- svg/keyboards.svg | 3690 +++++++++++++++++-- textures/digiterms_beige_keyboard_sides.png | Bin 281 -> 283 bytes textures/digiterms_beige_keyboard_top.png | Bin 1217 -> 652 bytes 5 files changed, 3522 insertions(+), 264 deletions(-) diff --git a/functions.lua b/functions.lua index 2c9cbac..8cafc8e 100644 --- a/functions.lua +++ b/functions.lua @@ -18,6 +18,17 @@ along with signs. If not, see . --]] +local player_contexts = {} + +minetest.register_on_leaveplayer(function(player) + player_contexts[player:get_player_name()] = nil +end) + +function digiterms.get_player_context(name) + player_contexts[name] = player_contexts[name] or {} + return player_contexts[name] +end + local function get_lines(pos) local lines = {} local meta = minetest.get_meta(pos) @@ -84,9 +95,6 @@ function digiterms.push_text_on_screen(pos, text) minetest.log("warning", "[digiterms] At "..minetest.pos_to_string(pos) ..", digiterms:screen entity should have 'lines' and 'columns' attribures.") end - else - minetest.log("warning", "[digiterms] Node at "..minetest.pos_to_string(pos) - .." does not have digiterms:screen entity.") end end @@ -152,6 +160,9 @@ function digiterms.register_monitor( minetest.register_node(nodename, superpose_table(ndef, nodedefon)) -- Register the corresponding Off node + if ndef.display_entities then + ndef.display_entities["digiterms:screen"] = nil + end ndef.drop = nodename ndef.groups.not_in_creative_inventory = 1 ndef.on_destruct = nil diff --git a/nodes.lua b/nodes.lua index 6bee960..11a519e 100644 --- a/nodes.lua +++ b/nodes.lua @@ -61,7 +61,7 @@ digiterms.register_monitor('digiterms:lcd_monitor', { paramtype2 = "facedir", sunlight_propagates = false, drawtype = "nodebox", - groups = {choppy = 1, oddly_breakable_by_hand = 1}, + groups = {choppy = 1, oddly_breakable_by_hand = 3}, node_box = lcd_node_box, collision_box = lcd_collision_box, selection_box = lcd_collision_box, @@ -91,7 +91,7 @@ digiterms.register_monitor('digiterms:cathodic_amber_monitor', { paramtype2 = "facedir", sunlight_propagates = false, drawtype = "nodebox", - groups = {choppy = 1, oddly_breakable_by_hand = 1}, + groups = {oddly_breakable_by_hand = 3}, node_box = cathodic_node_box, collision_box = cathodic_collision_box, selection_box = cathodic_collision_box, @@ -121,7 +121,7 @@ digiterms.register_monitor('digiterms:cathodic_green_monitor', { paramtype2 = "facedir", sunlight_propagates = false, drawtype = "nodebox", - groups = {choppy = 1, oddly_breakable_by_hand = 1}, + groups = {oddly_breakable_by_hand = 1, dig_immediate = 1}, node_box = cathodic_node_box, collision_box = cathodic_collision_box, selection_box = cathodic_collision_box, @@ -159,7 +159,76 @@ minetest.register_node('digiterms:beige_keyboard', { type = "fixed", fixed = { {-8/16, -8/16, -1/16, 8/16, -6/16, 7/16}, - {-7/16, -12/32, 1/32, 7/16, -11/32, 11/32}, + {-7/16, -12/32, 0, 7/16, -11/32, 6/16}, } - } + }, + digiline = + { + receptor = {} + }, + on_rightclick = function(pos, node, player, itemstack, pointed_thing) + if not minetest.is_player(player) then + return + end + local name = player:get_player_name() + local context = digiterms.get_player_context(name) + context.formname = 'digiterms:keyboard' + context.pos = pos + + local owned = not minetest.is_protected(context.pos, name) + local protected = minetest.is_protected(context.pos, '') + local meta = minetest.get_meta(pos) + local channel = meta:get_string('channel') + local public = meta:get_string('public') + + if owned then + local fs = "size[8,5]".. + default.gui_bg..default.gui_bg_img..default.gui_slots.. + "field[1,1;3,1;channel;Chanel;"..channel.."]".. + "field[1,3;6.5,1;text;Type text:;]".. + "field_close_on_enter[text;true]button_exit[2.5,4;3,1;send;Send]" + if protected then + fs = fs.."checkbox[4,0.6;public;Public keyboard;"..public.."]" + end + minetest.show_formspec(name, context.formname, fs) + else + if public == 'true' and channel ~= '' then + minetest.show_formspec(name, context.formname, "size[8,3]".. + default.gui_bg..default.gui_bg_img..default.gui_slots.. + "field[1,1;6.5,1;text;Type text:;]".. + "field_close_on_enter[text;true]button_exit[2.5,2;3,1;send;Send]") + end + end + end, }) + +minetest.register_on_player_receive_fields(function(player, formname, fields) + if formname ~= 'digiterms:keyboard' or not minetest.is_player(player) then + return + end + local name = player:get_player_name() + local context = digiterms.get_player_context(name) + if context.formname ~= formname then + return + end + + local owned = not minetest.is_protected(context.pos, name) + local protected = minetest.is_protected(context.pos, '') + local meta = minetest.get_meta(context.pos) + if owned then + if fields.channel ~= nil and fields.channel ~= '' then + meta:set_string("channel", fields.channel) + end + if fields.public ~= nil and protected then + meta:set_string("public", fields.public) + end + end + + local channel = meta:get_string("channel") + + if fields.text and channel ~= '' and + (owned or meta:get_string("public") == 'true') then + digiline:receptor_send(context.pos, digiline.rules.default, channel, fields.text) + end + return true + end) diff --git a/svg/keyboards.svg b/svg/keyboards.svg index 4bd07d1..d7190e5 100644 --- a/svg/keyboards.svg +++ b/svg/keyboards.svg @@ -27,17 +27,17 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="32" - inkscape:cx="15.843199" - inkscape:cy="1.1127571" + inkscape:zoom="22.627417" + inkscape:cx="-2.2827096" + inkscape:cy="16.927466" inkscape:document-units="px" - inkscape:current-layer="layer4" + inkscape:current-layer="layer1" showgrid="true" - inkscape:window-width="1463" - inkscape:window-height="1260" - inkscape:window-x="619" - inkscape:window-y="55" - inkscape:window-maximized="0" + inkscape:window-width="2560" + inkscape:window-height="1376" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" inkscape:grid-bbox="true"> + + + + + @@ -561,8 +577,8 @@ style="display:inline"> @@ -585,8 +601,8 @@ id="rect2175-3" width="1" height="1" - x="2.5" - y="2.5" + x="2" + y="41" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -595,8 +611,8 @@ id="rect2175-6" width="1.5" height="1" - x="1" - y="3.5" + x="0.5" + y="42" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -605,8 +621,8 @@ id="rect2175-7" width="2" height="1" - x="1" - y="4.5" + x="0.5" + y="43" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -615,8 +631,8 @@ id="rect2175-5" width="1" height="1" - x="3" - y="3.5" + x="2.5" + y="42" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -625,8 +641,8 @@ id="rect2175-6-3" width="1.5" height="0.5" - x="1" - y="4" + x="0.5" + y="42.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -635,8 +651,8 @@ id="rect2175-6-3-5" width="0.5" height="0.5" - x="2" - y="3.5" + x="1.5" + y="42" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -645,8 +661,8 @@ id="rect2175-6-3-5-6" width="0.5" height="0.5" - x="1.5" - y="2.5" + x="1" + y="41" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -655,8 +671,8 @@ id="rect2175-6-3-2" width="1" height="0.5" - x="1" - y="3" + x="0.5" + y="41.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -665,8 +681,8 @@ id="rect2175-6-3-5-6-9" width="0.5" height="0.5" - x="3" - y="2.5" + x="2.5" + y="41" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -675,8 +691,8 @@ id="rect2175-6-3-2-1" width="1" height="0.5" - x="2.5" - y="3" + x="2" + y="41.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -685,8 +701,8 @@ id="rect2175-6-3-5-6-2" width="0.5" height="0.5" - x="3.5" - y="3.5" + x="3" + y="42" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -695,8 +711,8 @@ id="rect2175-6-3-2-7" width="1" height="0.5" - x="3" - y="4" + x="2.5" + y="42.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -705,8 +721,8 @@ id="rect2175-6-3-5-6-0" width="0.5" height="0.5" - x="2.5" - y="4.5" + x="2" + y="43" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -715,8 +731,8 @@ id="rect2175-6-3-2-9" width="2" height="0.5" - x="1" - y="5" + x="0.5" + y="43.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -725,8 +741,8 @@ id="rect2175-3-3" width="1" height="1" - x="4" - y="2.5" + x="3.5" + y="41" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -735,8 +751,8 @@ id="rect2175-6-3-5-6-9-6" width="0.5" height="0.5" - x="4.5" - y="2.5" + x="4" + y="41" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -745,8 +761,8 @@ id="rect2175-6-3-2-1-0" width="1" height="0.5" - x="4" - y="3" + x="3.5" + y="41.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -755,8 +771,8 @@ id="rect2175-3-6" width="1" height="1" - x="5.5" - y="2.5" + x="5" + y="41" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -765,8 +781,8 @@ id="rect2175-6-3-5-6-9-2" width="0.5" height="0.5" - x="6" - y="2.5" + x="5.5" + y="41" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -775,8 +791,8 @@ id="rect2175-6-3-2-1-6" width="1" height="0.5" - x="5.5" - y="3" + x="5" + y="41.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -785,8 +801,8 @@ id="rect2175-3-1" width="1" height="1" - x="7" - y="2.5" + x="6.5" + y="41" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -795,8 +811,8 @@ id="rect2175-6-3-5-6-9-8" width="0.5" height="0.5" - x="7.5" - y="2.5" + x="7" + y="41" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -805,8 +821,8 @@ id="rect2175-6-3-2-1-7" width="1" height="0.5" - x="7" - y="3" + x="6.5" + y="41.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -815,8 +831,8 @@ id="rect2175-3-9" width="1" height="1" - x="8.5" - y="2.5" + x="8" + y="41" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -825,8 +841,8 @@ id="rect2175-6-3-5-6-9-20" width="0.5" height="0.5" - x="9" - y="2.5" + x="8.5" + y="41" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -835,8 +851,8 @@ id="rect2175-6-3-2-1-2" width="1" height="0.5" - x="8.5" - y="3" + x="8" + y="41.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -845,8 +861,8 @@ id="rect2175-3-37" width="1" height="1" - x="10" - y="2.5" + x="9.5" + y="41" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -855,8 +871,8 @@ id="rect2175-6-3-5-6-9-5" width="0.5" height="0.5" - x="10.5" - y="2.5" + x="10" + y="41" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -865,8 +881,8 @@ id="rect2175-6-3-2-1-9" width="1" height="0.5" - x="10" - y="3" + x="9.5" + y="41.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -875,8 +891,8 @@ id="rect2175-3-2" width="1" height="1" - x="11.5" - y="2.5" + x="11" + y="41" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -885,8 +901,8 @@ id="rect2175-6-3-5-6-9-28" width="0.5" height="0.5" - x="12" - y="2.5" + x="11.5" + y="41" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -895,8 +911,8 @@ id="rect2175-6-3-2-1-97" width="1" height="0.5" - x="11.5" - y="3" + x="11" + y="41.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -905,8 +921,8 @@ id="rect2175-3-36" width="2" height="1" - x="13" - y="2.5" + x="12.5" + y="41" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -915,8 +931,8 @@ id="rect2175-6-3-5-6-9-1" width="0.5" height="0.5" - x="14.5" - y="2.5" + x="14" + y="41" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -925,8 +941,8 @@ id="rect2175-6-3-2-1-29" width="2" height="0.5" - x="13" - y="3" + x="12.5" + y="41.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -935,8 +951,8 @@ id="rect2175-3-3-7" width="1" height="1" - x="4.5" - y="3.5" + x="4" + y="42" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -945,8 +961,8 @@ id="rect2175-6-3-5-6-9-6-8" width="0.5" height="0.5" - x="5" - y="3.5" + x="4.5" + y="42" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -955,8 +971,8 @@ id="rect2175-6-3-2-1-0-4" width="1" height="0.5" - x="4.5" - y="4" + x="4" + y="42.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -965,8 +981,8 @@ id="rect2175-3-6-5" width="1" height="1" - x="6" - y="3.5" + x="5.5" + y="42" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -975,8 +991,8 @@ id="rect2175-6-3-5-6-9-2-0" width="0.5" height="0.5" - x="6.5" - y="3.5" + x="6" + y="42" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -985,8 +1001,8 @@ id="rect2175-6-3-2-1-6-3" width="1" height="0.5" - x="6" - y="4" + x="5.5" + y="42.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -995,8 +1011,8 @@ id="rect2175-3-1-6" width="1" height="1" - x="7.5" - y="3.5" + x="7" + y="42" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1005,8 +1021,8 @@ id="rect2175-6-3-5-6-9-8-1" width="0.5" height="0.5" - x="8" - y="3.5" + x="7.5" + y="42" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1015,8 +1031,8 @@ id="rect2175-6-3-2-1-7-0" width="1" height="0.5" - x="7.5" - y="4" + x="7" + y="42.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1025,8 +1041,8 @@ id="rect2175-3-9-6" width="1" height="1" - x="9" - y="3.5" + x="8.5" + y="42" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1035,8 +1051,8 @@ id="rect2175-6-3-5-6-9-20-3" width="0.5" height="0.5" - x="9.5" - y="3.5" + x="9" + y="42" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1045,8 +1061,8 @@ id="rect2175-6-3-2-1-2-2" width="1" height="0.5" - x="9" - y="4" + x="8.5" + y="42.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1055,8 +1071,8 @@ id="rect2175-3-37-0" width="1" height="1" - x="10.5" - y="3.5" + x="10" + y="42" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1065,8 +1081,8 @@ id="rect2175-6-3-5-6-9-5-6" width="0.5" height="0.5" - x="11" - y="3.5" + x="10.5" + y="42" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1075,8 +1091,8 @@ id="rect2175-6-3-2-1-9-1" width="1" height="0.5" - x="10.5" - y="4" + x="10" + y="42.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1085,8 +1101,8 @@ id="rect2175-3-2-5" width="1" height="1" - x="12" - y="3.5" + x="11.5" + y="42" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1095,8 +1111,8 @@ id="rect2175-6-3-5-6-9-28-5" width="0.5" height="0.5" - x="12.5" - y="3.5" + x="12" + y="42" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1105,8 +1121,8 @@ id="rect2175-6-3-2-1-97-4" width="1" height="0.5" - x="12" - y="4" + x="11.5" + y="42.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1115,8 +1131,8 @@ id="rect2175-3-36-7" width="1.5" height="1" - x="13.5" - y="3.5" + x="13" + y="42" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1125,8 +1141,8 @@ id="rect2175-3-3-6" width="1" height="1" - x="3.5" - y="4.5" + x="3" + y="43" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1135,8 +1151,8 @@ id="rect2175-6-3-5-6-9-6-9" width="0.5" height="0.5" - x="4" - y="4.5" + x="3.5" + y="43" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1145,8 +1161,8 @@ id="rect2175-6-3-2-1-0-3" width="1" height="0.5" - x="3.5" - y="5" + x="3" + y="43.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1155,8 +1171,8 @@ id="rect2175-3-6-7" width="1" height="1" - x="5" - y="4.5" + x="4.5" + y="43" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1165,8 +1181,8 @@ id="rect2175-6-3-5-6-9-2-4" width="0.5" height="0.5" - x="5.5" - y="4.5" + x="5" + y="43" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1175,8 +1191,8 @@ id="rect2175-6-3-2-1-6-5" width="1" height="0.5" - x="5" - y="5" + x="4.5" + y="43.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1185,8 +1201,8 @@ id="rect2175-3-1-2" width="1" height="1" - x="6.5" - y="4.5" + x="6" + y="43" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1195,8 +1211,8 @@ id="rect2175-6-3-5-6-9-8-5" width="0.5" height="0.5" - x="7" - y="4.5" + x="6.5" + y="43" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1205,8 +1221,8 @@ id="rect2175-6-3-2-1-7-4" width="1" height="0.5" - x="6.5" - y="5" + x="6" + y="43.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1215,8 +1231,8 @@ id="rect2175-3-9-7" width="1" height="1" - x="8" - y="4.5" + x="7.5" + y="43" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1225,8 +1241,8 @@ id="rect2175-6-3-5-6-9-20-4" width="0.5" height="0.5" - x="8.5" - y="4.5" + x="8" + y="43" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1235,8 +1251,8 @@ id="rect2175-6-3-2-1-2-4" width="1" height="0.5" - x="8" - y="5" + x="7.5" + y="43.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1245,8 +1261,8 @@ id="rect2175-3-37-3" width="1" height="1" - x="9.5" - y="4.5" + x="9" + y="43" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1255,8 +1271,8 @@ id="rect2175-6-3-5-6-9-5-0" width="0.5" height="0.5" - x="10" - y="4.5" + x="9.5" + y="43" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1265,8 +1281,8 @@ id="rect2175-6-3-2-1-9-7" width="1" height="0.5" - x="9.5" - y="5" + x="9" + y="43.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1275,8 +1291,8 @@ id="rect2175-3-2-8" width="1" height="1" - x="11" - y="4.5" + x="10.5" + y="43" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1285,8 +1301,8 @@ id="rect2175-6-3-5-6-9-28-6" width="0.5" height="0.5" - x="11.5" - y="4.5" + x="11" + y="43" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1295,8 +1311,8 @@ id="rect2175-6-3-2-1-97-8" width="1" height="0.5" - x="11" - y="5" + x="10.5" + y="43.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1305,8 +1321,8 @@ id="rect2175-3-36-8" width="1" height="1" - x="12.5" - y="4.5" + x="12" + y="43" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1315,8 +1331,8 @@ id="rect2175-6-3-5-6-9-1-4" width="0.5" height="0.5" - x="13" - y="4.5" + x="12.5" + y="43" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1325,8 +1341,8 @@ id="rect2175-6-3-2-1-29-3" width="1" height="0.5" - x="12.5" - y="5" + x="12" + y="43.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1335,8 +1351,8 @@ id="rect2175-3-3-7-1" width="1" height="1" - x="4" - y="5.5" + x="3.5" + y="44" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1345,8 +1361,8 @@ id="rect2175-6-3-5-6-9-6-8-4" width="0.5" height="0.5" - x="4.5" - y="5.5" + x="4" + y="44" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1355,8 +1371,8 @@ id="rect2175-6-3-2-1-0-4-9" width="1" height="0.5" - x="4" - y="6" + x="3.5" + y="44.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1365,8 +1381,8 @@ id="rect2175-3-6-5-2" width="1" height="1" - x="5.5" - y="5.5" + x="5" + y="44" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1375,8 +1391,8 @@ id="rect2175-6-3-5-6-9-2-0-0" width="0.5" height="0.5" - x="6" - y="5.5" + x="5.5" + y="44" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1385,8 +1401,8 @@ id="rect2175-6-3-2-1-6-3-6" width="1" height="0.5" - x="5.5" - y="6" + x="5" + y="44.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1395,8 +1411,8 @@ id="rect2175-3-1-6-8" width="1" height="1" - x="7" - y="5.5" + x="6.5" + y="44" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1405,8 +1421,8 @@ id="rect2175-6-3-5-6-9-8-1-9" width="0.5" height="0.5" - x="7.5" - y="5.5" + x="7" + y="44" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1415,8 +1431,8 @@ id="rect2175-6-3-2-1-7-0-2" width="1" height="0.5" - x="7" - y="6" + x="6.5" + y="44.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1425,8 +1441,8 @@ id="rect2175-3-9-6-6" width="1" height="1" - x="8.5" - y="5.5" + x="8" + y="44" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1435,8 +1451,8 @@ id="rect2175-6-3-5-6-9-20-3-6" width="0.5" height="0.5" - x="9" - y="5.5" + x="8.5" + y="44" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1445,8 +1461,8 @@ id="rect2175-6-3-2-1-2-2-4" width="1" height="0.5" - x="8.5" - y="6" + x="8" + y="44.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1455,8 +1471,8 @@ id="rect2175-3-37-0-9" width="1" height="1" - x="10" - y="5.5" + x="9.5" + y="44" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1465,8 +1481,8 @@ id="rect2175-6-3-5-6-9-5-6-5" width="0.5" height="0.5" - x="10.5" - y="5.5" + x="10" + y="44" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1475,8 +1491,8 @@ id="rect2175-6-3-2-1-9-1-0" width="1" height="0.5" - x="10" - y="6" + x="9.5" + y="44.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1485,8 +1501,8 @@ id="rect2175-3-2-5-4" width="1" height="1" - x="11.5" - y="5.5" + x="11" + y="44" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1495,8 +1511,8 @@ id="rect2175-6-3-5-6-9-28-5-8" width="0.5" height="0.5" - x="12" - y="5.5" + x="11.5" + y="44" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1505,8 +1521,8 @@ id="rect2175-6-3-2-1-97-4-7" width="1" height="0.5" - x="11.5" - y="6" + x="11" + y="44.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1515,8 +1531,8 @@ id="rect2175-3-36-7-1" width="2" height="1" - x="13" - y="5.5" + x="12.5" + y="44" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1525,8 +1541,8 @@ id="rect2175-6-3-5-6-9-1-6-7" width="0.5" height="0.5" - x="14.5" - y="5.5" + x="14" + y="44" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1535,8 +1551,8 @@ id="rect2175-6-3-2-1-29-5-2" width="2" height="0.5" - x="13" - y="6" + x="12.5" + y="44.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1545,8 +1561,8 @@ id="rect2175-3-36-7-1-7" width="1" height="1" - x="14" - y="4.5" + x="13.5" + y="43" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1555,8 +1571,8 @@ id="rect2175-6-3-5-6-9-1-6-7-2" width="0.5" height="1.5" - x="14.5" - y="3.5" + x="14" + y="42" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1565,8 +1581,8 @@ id="rect2175-6-3-2-1-29-5-2-2" width="1" height="0.5" - x="14" - y="5" + x="13.5" + y="43.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1575,8 +1591,8 @@ id="rect2175-6-3-5-6-9-28-5-6" width="0.5" height="0.5" - x="13.5" - y="4" + x="13" + y="42.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1585,8 +1601,8 @@ id="rect2175-7-1" width="7" height="1" - x="4.5" - y="6.5" + x="4" + y="45" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1595,8 +1611,8 @@ id="rect2175-6-3-5-6-0-0" width="0.5" height="0.5" - x="11" - y="6.5" + x="10.5" + y="45" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1605,8 +1621,8 @@ id="rect2175-6-3-5-6-0-0-1" width="7" height="0.5" - x="4.5" - y="7" + x="4" + y="45.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1615,8 +1631,8 @@ id="rect2175-3-6-59" width="1" height="1" - x="12" - y="6.5" + x="11.5" + y="45" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1625,8 +1641,8 @@ id="rect2175-6-3-5-6-9-2-49" width="0.5" height="0.5" - x="12.5" - y="6.5" + x="12" + y="45" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1635,8 +1651,8 @@ id="rect2175-6-3-2-1-6-0" width="1" height="0.5" - x="12" - y="7" + x="11.5" + y="45.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1645,8 +1661,8 @@ id="rect2175-3-1-9" width="1.5" height="1" - x="13.5" - y="6.5" + x="13" + y="45" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1655,8 +1671,8 @@ id="rect2175-6-3-5-6-9-8-17" width="0.5" height="0.5" - x="14.5" - y="6.5" + x="14" + y="45" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1665,8 +1681,8 @@ id="rect2175-6-3-2-1-7-7" width="1.5" height="0.5" - x="13.5" - y="7" + x="13" + y="45.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1675,8 +1691,8 @@ id="rect2175-3-6-9" width="1" height="1" - x="1" - y="5.5" + x="0.5" + y="44" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1685,8 +1701,8 @@ id="rect2175-6-3-5-6-9-2-7" width="0.5" height="0.5" - x="1.5" - y="5.5" + x="1" + y="44" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1695,8 +1711,8 @@ id="rect2175-6-3-2-1-6-7" width="1" height="0.5" - x="1" - y="6" + x="0.5" + y="44.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1705,8 +1721,8 @@ id="rect2175-3-1-67" width="1" height="1" - x="2.5" - y="5.5" + x="2" + y="44" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1715,8 +1731,8 @@ id="rect2175-6-3-5-6-9-8-3" width="0.5" height="0.5" - x="3" - y="5.5" + x="2.5" + y="44" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1725,8 +1741,8 @@ id="rect2175-6-3-2-1-7-6" width="1" height="0.5" - x="2.5" - y="6" + x="2" + y="44.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1735,8 +1751,8 @@ id="rect2175-3-6-56" width="1.5" height="1" - x="1" - y="6.5" + x="0.5" + y="45" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1745,8 +1761,8 @@ id="rect2175-6-3-5-6-9-2-3" width="0.5" height="0.5" - x="2" - y="6.5" + x="1.5" + y="45" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1755,8 +1771,8 @@ id="rect2175-6-3-2-1-6-9" width="1.5" height="0.5" - x="1" - y="7" + x="0.5" + y="45.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1765,8 +1781,8 @@ id="rect2175-3-1-4" width="1" height="1" - x="3" - y="6.5" + x="2.5" + y="45" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1775,8 +1791,8 @@ id="rect2175-6-3-5-6-9-8-8" width="0.5" height="0.5" - x="3.5" - y="6.5" + x="3" + y="45" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1785,8 +1801,8 @@ id="rect2175-6-3-2-1-7-1" width="1" height="0.5" - x="3" - y="7" + x="2.5" + y="45.5" inkscape:export-filename="/home/pyrollo/dev/minetest-mods/digiterms/textures/digiterms_beige_keyboard_top.png" inkscape:export-xdpi="192.00002" inkscape:export-ydpi="192.00002" /> @@ -1802,7 +1818,7 @@ inkscape:export-ydpi="96" transform="rotate(-90)" /> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/textures/digiterms_beige_keyboard_sides.png b/textures/digiterms_beige_keyboard_sides.png index 836336e29bd2fe2bf13509a83f48d20e710958f2..36e507e66222c22897113c16c06cf31329ea1bed 100644 GIT binary patch delta 181 zcmV;m080Ov0-FMmZhx3bL_t(IjqTI14Z=VWMA1KcXFw)KG)W006hu1|K+>nHs5fKQ82x@CHGA<#Bh=6sa)I!&FtZOj6 jCWN-GRx*>%|1;qYHpobc^!F><00000NkvXXu0mjf!Ld)+ delta 179 zcmV;k08Iaz0+|AkZhw|ZL_t(IjqTI14Z=_mgW=!zE`Xp$>^}etz#a@hnJN{$D3?15 z!~}E*mzMl>R#g>W#J(B-fj{s=fL|{cB7$)osVeq|JxI*GQ;6g7gf(NDCL$Jg+YJ%H zvIO25y5G)~nJf_qkQrHty91(GdxLXF5@tqbA|NyI-e+V&5-gbs>q_&+Fbu3~@_0TF hdUx(r6`%iC!3z)qNK@J1jUWI3002ovPDHLkV1o8DO0EC^ diff --git a/textures/digiterms_beige_keyboard_top.png b/textures/digiterms_beige_keyboard_top.png index 9691b4294cdd6d338e6c0d56034b0880426db805..c95f9ff9df1aca20d096348cd6e57b38e64773d5 100644 GIT binary patch delta 554 zcmV+_0@eM&35*4hZGQp@NklDGZciolj@WgE($`7 zNPvTx1yrv`yNl3y4xZ{AkV`e~}m{Q8!3;`~YEFoCkx9rJrqyQpcdjr-0cmn}s zfGh#$_~FZ4MxOc60g?!2MytcJEGf&f8*kGBAfZoho_R`%`;SgJzqkZoJQ{L-ak*7H zKRO`Bn6scw#DCdz!gw^KEX%Fg*>utczyW=J``qig?jo@5-Or{I7K;TpuQd@^KZRz~ z$yRqi9t~HYKL`o*@%2+rDe>U(*-kZZ>-r%fC~H8{&NUE%fF=vvoqH!QcA|kc!guB~ z+@S~|bmu@zw^%GF%kmeyY5U#$b(^!#(3f|o4siGQ$$wupuxZ;Q8nP@8`vG s{v#Zr|0Dj7Xb-Rl*aPeV_5gc;@6d@E_|??ef&c&j07*qoM6N<$f(sG^>i_@% delta 1123 zcmV-p1f2Vf1;GiBZGQwlNklv4b2tiC{|} zA}qoy*BpnAe#cAboo9HEnBA?=gvCvDYJANHHd0Q}40PF@KxQaMqzfk|Zql7D1q$ z&G6nMMo?9pb>ZMN#Uu$LfP(ivEcJL7&J+<+5kW*y0aQ^yRq@^fVWV>{EbkFOMR49B zaQfVbOo}36KnTAz0*e4Nf&c=5AOS^00I=5Ly(dWws^GoDT8ncI??aqAho4S6fU4oS zF^0q#5W#!JIe!~?eyK231r5nX1T#ONe^7Ae?o*s|+#kH)+aLbGTFd>xi0^)Wg7?b) z;SoRGdya_E9~OLn_bKX?!C}b{zdl2~vNtTa^UD)dmA!)yLyYea3;Ks8Ki+#zq=0nZ zn{iP?q;!;3AYh$klvhzMN_Nx)+R~J~oFGOJBVv41hn>yF;6sJr-a(ZuRcFP#9% zmp5#P!<^5yFLF}N=no6F zKU$({Ld>r{2i-a*dp<|=h#dGIJ>=h6zt)s%B@q|}XNefcfKn7Ih)7(gH~30XNo z2z|}U27d&MNxC>y7-bcLkfsUw(Io0X808hJN^4vG9v_1QA?D?T_ugIX_M?#8`r^iI z^`3fSdGmaa3+Dq1JDZ{M{;=Tc<|{dmIsfMvli3^o)ty0x3{eyy?&1I^pJ!Pb}fvK(4z}i8<^{us_g-3a0WJXrhoIkff-B>QJ zy?+BlBQnM?DyncdAs`kZT}VU!V~O($1tBY&&O1g$)m7Lr^|BUTVrtH!h@cAc=l)l! zs_Z{LLJx<&YzSyt=iD_nvg_`7g#N^Y(?Hmw)eY?72qA3_L~4)(Ff<_ipZZv)Qckf?lsj zUQRj|=KdqkhTo{FlBNmXE7RE&Rb?SvAW4!g*xF#LyyRMuK1lL@Lyuh%0@)6UGM z(<#>4u876OMG|AM^SR<2sv0!#>aYldsMQ&5ds?ZB(@R81k^~Wn11tE5#>Cz$-du-? zm?Q}%Y798d5od=8q#c#k#{)H1t=;$24blxJ5fl3rM5*56=AcwNP0ZJPx}q9%grErW pzyC*c2H*_98GthYX8_Is{0FcqGly1c03QGV002ovPDHLkV1ih1C4T?_