From 32f65eceaa779d398f9f6aefc3f92742826b1966 Mon Sep 17 00:00:00 2001 From: ericrius1 Date: Thu, 19 Nov 2015 14:32:03 -0800 Subject: [PATCH] less sensitive firing --- examples/weapons/pistol/pistol.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/weapons/pistol/pistol.js b/examples/weapons/pistol/pistol.js index 2e0d7a200f..c1798d83a6 100644 --- a/examples/weapons/pistol/pistol.js +++ b/examples/weapons/pistol/pistol.js @@ -140,12 +140,12 @@ initControllerMapping: function() { 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.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.mapping.enable();