#1
|
|||
|
|||
vizinfo in HMD mode
I am using the vizinfo to get input from the user. It works fine when I'm testing, but is unable to recieve input when in HMD mode. (for example: textbox fields cannot be selected to type in, radio buttons do not get clicked) Any suggetions?
Code:
if TESTING: viz.go() else: viz.displaymode(1280, 480, 16, 60) viz.go(viz.TRACKER|viz.HMD|viz.STEREO) Code:
info = vizinfo.add('User Input', 1) inputBox = info.add( viz.TEXTBOX, "blah" ) inputRadio1 = info.add( viz.RADIO, 1, "blah: 1" ) inputRadio2 = info.add( viz.RADIO, 1, "2" ) |
|
|