I've been playing Minecraft and earlier today I thought if its possible to play with the classic controller (I thought it would be ideal seeing as it has two analog sticks and such). I chose to use GlovePIE cause I thought it would be easiest to use and I have used it before. I made my script but when it comes to the right analog stick to control the pointer it moves the pointer too fast. Heres the script...
Key.W = Classic1.LeftStickY < 0
Key.A = Classic1.LeftStickX < 0
Key.S = Classic1.LeftStickY > 0
Key.D = Classic1.LeftStickX > 0
Key.Space = Classic1.b
Mouse.x = Classic1.RightStickX + 0.5
Mouse.y = Classic1.RightStickY + 0.512
Mouse.LeftButton = Classic1.L
Mouse.RightButton = Classic1.R
(The bit in bold's the bit i'm on about if you couldn't tell
)
I have the mouse a bit offset from the center because the window is a bit off center and I have the mouse set to go back to the center when I let go of the analog stick. My problem is that when I move the controller it moves the mouse very fast and it isn't that smooth. I understand the smoothness might be because of the controller but I want it so the sensitivity is down.
Key.W = Classic1.LeftStickY < 0
Key.A = Classic1.LeftStickX < 0
Key.S = Classic1.LeftStickY > 0
Key.D = Classic1.LeftStickX > 0
Key.Space = Classic1.b
Mouse.x = Classic1.RightStickX + 0.5
Mouse.y = Classic1.RightStickY + 0.512
Mouse.LeftButton = Classic1.L
Mouse.RightButton = Classic1.R
(The bit in bold's the bit i'm on about if you couldn't tell
I have the mouse a bit offset from the center because the window is a bit off center and I have the mouse set to go back to the center when I let go of the analog stick. My problem is that when I move the controller it moves the mouse very fast and it isn't that smooth. I understand the smoothness might be because of the controller but I want it so the sensitivity is down.