View Single Post
  #29  
Old 03-09-2006, 02:26 PM
betancourtb82 betancourtb82 is offline
Member
 
Join Date: Jan 2006
Posts: 103
Ok, I tried adding the wait then freeze, instead of just having the avatar fall and get back up, but for some reason, it's not working. What does the underscore in speed_node(0) mean?

Code:
	info = viz.intersect(pos,futurePos)
	if info.intersected:
		if info.object in avatars:
			#viz.starttimer(FREEZE_AVATAR,info.object.getduration(7)-0.1)
			WaitThenFreeze = vizact.sequence( vizact.waittime(info.object.getduration(7)-0.2), vizact.speed_node(0) )
			info.object.add(WaitThenFreeze) #Add the action to the avatar
			#info.object.add(vizact.sequence(vizact.waittime(no
		bullet.visible(0)
		bullet.active = 0
Reply With Quote