mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
10 lines
No EOL
367 B
JavaScript
10 lines
No EOL
367 B
JavaScript
var MAPPING_NAME = "com.highfidelity.rightClickExample";
|
|
var mapping = Controller.newMapping(MAPPING_NAME);
|
|
mapping.from(Controller.Hardware.Keyboard.RightMouseClicked).to(function (value) {
|
|
print("Keyboard.RightMouseClicked");
|
|
});
|
|
Controller.enableMapping(MAPPING_NAME);
|
|
|
|
Script.scriptEnding.connect(function () {
|
|
Controller.disableMapping(MAPPING_NAME);
|
|
}); |