WorldViz User Forum

WorldViz User Forum (https://forum.worldviz.com/index.php)
-   Vizard (https://forum.worldviz.com/forumdisplay.php?f=17)
-   -   Beginner's troubleshoot (https://forum.worldviz.com/showthread.php?t=458)

alemenchaca 11-21-2005 01:55 PM

Beginner's troubleshoot
 
I'm learning to use Vizard with the tutorial. I started with the Keyboard Interaction section, copypasted the code from the tutorial (see below) and my screen doesn't do what it is supposed to do. Could anyone help me? I'm so new in this that I don't really know what is wrong.
Thanks!
Alejandra.

MY CODE:
import viz

viz.go()

micuarto = viz.add('room.wrl') # Add room to your empty world
pantalla = micuarto.getchild('screen') # Get access to a subobject screen in the room

# Add the projected light to the room and translate it to it's correct location
luz = viz.add('light.WRL')
luz.translate(0,2.25,0)

def mytimer(num):

pass

def mykeyboard(key):

# If the user presses the u key do something
if key == 'u':
# Move the screen up
pantalla.goto(0,3,0,.5)
print 'up'

# If the user presses the d key, do something
if key == 'd':
# Move the screen down
pantalla.goto(0,0,0,.5)
print 'down'

viz.callback(viz.TIMER_EVENT,mytimer)
viz.starttimer(0,0.5,-1)

viz.callback(viz.KEYBOARD_EVENT,mykeyboard)


All times are GMT -7. The time now is 02:00 AM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Copyright 2002-2023 WorldViz LLC