![]() |
|
#5
|
|||
|
|||
|
Using a timer and joy.isButtonDown should work. Have you tried something like this.
Code:
def checkButtons(): if joy.isButtonDown(1): IncrementAngle(0.1) if joy.isButtonDown(2): IncrementAngle(-0.1) vizact.ontimer(0,checkButtons) |
|
|