Thread: waittime
View Single Post
  #1  
Old 04-29-2005, 12:44 PM
cade_mccall cade_mccall is offline
Member
 
Join Date: Sep 2004
Posts: 61
waittime

Hey guys-

We're having trouble with using a waittime command within a director function. No matter where the waittime commands are within the sequence, the pause always occurs at the beginning of the sequence of events. Here's some example code:

def viewPic():
label.visible(viz.OFF)
viz.waittime(2)
quad.texture(pics[0])
quad.visible(viz.ON)

In this code, the label disappears after 2 seconds and then the quad immediately appears. What are we doing wrong?
Reply With Quote