WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

 
 
Thread Tools Rate Thread Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 05-31-2007, 07:40 AM
djdesmangles djdesmangles is offline
Member
 
Join Date: Nov 2006
Posts: 88
Exclamation Some problems...

Hello Wizards,

I've some codes that doesn't work... If I want a delay of 2 seconds before playing a sound:

# my variables
# wait for 2 seconds before playing track
def onTimer(num):
Track1.play()
viz.callback(viz.TIMER_EVENT, onTimer)
viz.starttimer(0, 2)


- If I want to listening to my joystick event:

# add a joystick and listen
joy = vizjoy.add()
def joystickListener(num):

y = joy.getPosition[1]
x = joy.getPosition[0]
if math.fabs(y) > 0.2:
viz.move(0,0,-y*0.1)
if math.fabs(x) > 0.2:
viz.move(x*0.1,0,0)
viz.callback(viz.TIMER_EVENT, joystickListener)
viz.starttimer(1, 0.001, viz.FOREVER)

The problem is that only the joystick fonction will work. The sound will never be played. If I change the first fonction to something that requires an infinite loop, the two callbacks will work !!!

I don't undestand why I can't have a delay while starting my joystick...

Thanks,
viz.FOREVER,
D.
Reply With Quote
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -7. The time now is 05:57 AM.


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