No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

WiimoteScript.PIE 414B

12345678910111213
  1. var.ButtonFreezeTime = 250ms
  2. var.PointerBump = KeepDown(Pressed(wiimote.A),var.ButtonFreezeTime) or KeepDown(Pressed(wiimote.B),var.ButtonFreezeTime)
  3. Wiimote.Led1 = true
  4. var.MoveButton = wiimote.B
  5. mouse.LeftButton = wiimote.A
  6. mouse.RightButton = wiimote.Plus
  7. mouse.MiddleButton = wiimote.Down
  8. if wiimote.PointerVisible but not var.PointerBump then
  9. mouse.x = wiimote.PointerX
  10. mouse.y = wiimote.PointerY
  11. end if