Miscellaneous touchscreen and noteblock work
* Noteblock sound list updated * Noteblocks now support pitch control * Touchscreens can now optionally use the "real coordinates" system
This commit is contained in:
@@ -2,6 +2,9 @@ digistuff.update_ts_formspec = function (pos)
|
||||
local meta = minetest.get_meta(pos)
|
||||
local fs = "size[10,8]"..
|
||||
"background[0,0;0,0;digistuff_ts_bg.png;true]"
|
||||
if meta:get_int("realcoordinates") > 0 then
|
||||
fs = fs.."real_coordinates[true]"
|
||||
end
|
||||
if meta:get_int("init") == 0 then
|
||||
fs = fs.."field[3.75,3;3,1;channel;Channel;]"..
|
||||
"button_exit[4,3.75;2,1;save;Save]"
|
||||
@@ -80,6 +83,8 @@ end
|
||||
digistuff.process_command = function (meta, data, msg)
|
||||
if msg.command == "clear" then
|
||||
data = {}
|
||||
elseif msg.command == "realcoordinates" then
|
||||
meta:set_int("realcoordinates",msg.enabled and 1 or 0)
|
||||
elseif msg.command == "addimage" then
|
||||
for _,i in pairs({"X","Y","W","H"}) do
|
||||
if not msg[i] or type(msg[i]) ~= "number" then
|
||||
|
Reference in New Issue
Block a user