overte-Armored-Dragon/scripts/system/domainChat/keypressEvents.js
armored-dragon eedabfa305
Listen for messages and display using notifcore.
Avatar joining and leaving.
2025-02-25 01:08:34 -06:00

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,
});
}
}