Thread: color
View Single Post
  #1  
Old 11-11-2008, 08:17 AM
jaclyn.bill jaclyn.bill is offline
Member
 
Join Date: Oct 2007
Posts: 42
color

Hi,

Quick question, I have programmers block on this.

I have a script set up in which a ball.ive pops up on the screen, moves, then repeats this in a timer loop many times.

I want the ball to occasionally be colored red. i have a previously defined list of when I want this to happen. Just picking out bits that are relevant here.

Code:
color_select = [0,50,0,0,0]

...

CS = color_select[i]

...

if CS == 50:
					ball2.color(1,0,0)
			if CS == 0:
					ball2.color(viz.clearcolor)
The ball goes red but then stays like that, but I want it to look normal on "0" trails. Is there a simple command for removing colour, the viz.clearcolor is obviously wrong.

Thank you in advance.

JB
Reply With Quote