Skip to content

Commit

Permalink
Small initial joystick position fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mdovgialo committed Aug 19, 2020
1 parent e4d3af0 commit 0020b3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions steam_vr_wheel/_joystick.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ def __init__(self):
self.throttle_y = Throttle(size=0.2)
self.throttle_x = Throttle(size=90)

self.grabbable_x = Throttle(size=1, starting=0.5)
self.grabbable_y = Throttle(size=1, starting=0.5)
self.grabbable_x = Throttle(size=1, starting=0.5/self.amplification)
self.grabbable_y = Throttle(size=1, starting=0.5/self.amplification)
self.grabbable_z = Throttle(size=1, starting=0.5)

self.joystick_grabbed = False
Expand Down

0 comments on commit 0020b3f

Please sign in to comment.