View Single Post
  #5  
Old 08-05-2009, 07:31 AM
durf durf is offline
Member
 
Join Date: Feb 2009
Posts: 61
Code:
	
ballList = []         

def balls():
     ball = ballOriginal.copy()
     ball.scale(.5,.5,.5)
     ball.collideSphere()
     ball.setPosition([0,20,0])
     ballList.append(ball)
vizact.ontimer2(0,200,balls)
So I added a global list... how do you "periodically go through the list and remove the objects"? I tried ballList.remove() and that didn't work.
Reply With Quote