mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
11 lines
No EOL
238 B
JavaScript
11 lines
No EOL
238 B
JavaScript
function keyPressEvent(event) {
|
|
switch (JSON.stringify(event.key)) {
|
|
case "16777220": // Enter key
|
|
if (HMD.active) return; // Don't allow in VR
|
|
|
|
quickMessage.sendToQml({
|
|
type: "change_visibility",
|
|
value: true,
|
|
});
|
|
}
|
|
} |