View Single Post
  #1  
Old 08-04-2009, 08:29 AM
durf durf is offline
Member
 
Join Date: Feb 2009
Posts: 61
removing multiple objects

Hello,

I cannot figure out how to remove or delete multiple objects that have been created this way:

Code:
	def balls():
		ball = ballOriginal.copy()
		ball.scale(.5,.5,.5)
		ball.collideSphere()
		ball.setPosition([0,20,0])
	vizact.ontimer2(0,200,balls)
How can I remove all 200 of those balls?

Thanks
Reply With Quote