PDA

View Full Version : input & gamepad


dominic
08-15-2005, 03:11 PM
Hey,

I have the following code. So, if I add one of those viz.input calls to get input then I am not able to get any input from the gamepad anymore. If I remove the viz.input line, then everything works just fine.
What am I doing wrong?

thanks,

dominic

PS: How can I submit code so that it keeps the indentions?


#testing
import viz
import sid

viz.go()

def userInput(num):
print 'num: ', num


if viz.running():#tried it with or without this magic line
h = viz.input("please enter a number: ")#PROBLEM

sid.callback(sid.BUTTONDOWN_EVENT, userInput)

farshizzo
08-15-2005, 04:01 PM
Hi,

Try placing the import sid statement after you call viz.go(). Also, when posting code place it between tags. Example:

[code ] some code