[client] Add default bindings for key_demo

Just F10 (quite) and ` (toggleconsole) so the two can be used during
demos, but just this is a major improvement.
This commit is contained in:
Bill Currie 2021-12-15 12:01:52 +09:00
parent 9d4017885f
commit cbf84d815f

View file

@ -53,6 +53,11 @@
},
{
name = key_demo;
imts = (
{
name = imt_demo;
},
);
}
);
devices = (
@ -129,6 +134,18 @@
devname = core:keyboard;
num_axes = 0;
num_buttons = 256;
buttons = (
{
imt = imt_demo;
num = 41;
binding = toggleconsole;
},
{
imt = imt_demo;
num = 68;
binding = quit;
},
);
}
);
};