We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab019bf commit 934bd24Copy full SHA for 934bd24
gamepad_controller.js
@@ -3,7 +3,7 @@ export class GamepadController{
3
constructor(gamepad){
4
this.actions = null
5
this.actions_time = null
6
- this.k_omega = 0.001;
+ this.k_omega = 1.0;
7
gamepad.addListener((output) => {
8
this.actions = output
9
this.actions_time = performance.now()
@@ -71,6 +71,9 @@ export class GamepadController{
71
return rpms_clipped.map(x => x * 2 - 1)
72
})
73
}
74
+ get_reference(states){
75
+ return null
76
+ }
77
reset() {
78
79
0 commit comments