mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-25 11:01:16 +00:00
[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:
parent
9d4017885f
commit
cbf84d815f
1 changed files with 17 additions and 0 deletions
|
@ -53,6 +53,11 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name = key_demo;
|
name = key_demo;
|
||||||
|
imts = (
|
||||||
|
{
|
||||||
|
name = imt_demo;
|
||||||
|
},
|
||||||
|
);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
devices = (
|
devices = (
|
||||||
|
@ -129,6 +134,18 @@
|
||||||
devname = core:keyboard;
|
devname = core:keyboard;
|
||||||
num_axes = 0;
|
num_axes = 0;
|
||||||
num_buttons = 256;
|
num_buttons = 256;
|
||||||
|
buttons = (
|
||||||
|
{
|
||||||
|
imt = imt_demo;
|
||||||
|
num = 41;
|
||||||
|
binding = toggleconsole;
|
||||||
|
},
|
||||||
|
{
|
||||||
|
imt = imt_demo;
|
||||||
|
num = 68;
|
||||||
|
binding = quit;
|
||||||
|
},
|
||||||
|
);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue