mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 00:17:25 +02:00
less sensitive firing
This commit is contained in:
parent
688afa4c69
commit
32f65eceaa
1 changed files with 2 additions and 2 deletions
|
@ -140,12 +140,12 @@
|
||||||
|
|
||||||
initControllerMapping: function() {
|
initControllerMapping: function() {
|
||||||
this.mapping = Controller.newMapping();
|
this.mapping = Controller.newMapping();
|
||||||
this.mapping.from(Controller.Standard.LT).hysteresis(0.0, 0.5).to(function(value) {
|
this.mapping.from(Controller.Standard.LT).hysteresis(0.0, 0.9).to(function(value) {
|
||||||
_this.triggerPress(0, value);
|
_this.triggerPress(0, value);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
this.mapping.from(Controller.Standard.RT).hysteresis(0.0, 0.5).to(function(value) {
|
this.mapping.from(Controller.Standard.RT).hysteresis(0.0, 0.9).to(function(value) {
|
||||||
_this.triggerPress(1, value);
|
_this.triggerPress(1, value);
|
||||||
});
|
});
|
||||||
this.mapping.enable();
|
this.mapping.enable();
|
||||||
|
|
Loading…
Reference in a new issue