tweak to sensitivity

This commit is contained in:
ericrius1 2015-11-19 14:39:13 -08:00
parent 32f65eceaa
commit 947d04e7f1

View file

@ -140,12 +140,12 @@
initControllerMapping: function() {
this.mapping = Controller.newMapping();
this.mapping.from(Controller.Standard.LT).hysteresis(0.0, 0.9).to(function(value) {
this.mapping.from(Controller.Standard.LT).hysteresis(0.0, 0.75).to(function(value) {
_this.triggerPress(0, value);
});
this.mapping.from(Controller.Standard.RT).hysteresis(0.0, 0.9).to(function(value) {
this.mapping.from(Controller.Standard.RT).hysteresis(0.0, 0.75).to(function(value) {
_this.triggerPress(1, value);
});
this.mapping.enable();