Page 1 of 1

Anyway to make any object or anything change color very fast

PostPosted: Sun Aug 13, 2017 10:46 pm
by decepticon
i've seen it in some scenes but i never knew how to do it, its like a rainbow, the only thing i know how to do script wise is interia multiplier and onhitbylaser then it spawns a circle and it shoots (The circle has a laser on it too so it's kind of like a gun)

Could I have a script ? thanks guys

Re: Anyway to make any object or anything change color very fast

PostPosted: Fri Oct 27, 2017 7:27 pm
by FRA32
pick one of the three lines that I put in the poststep. Dont try all at once:
Poststep : (e)=>{
colorhsva = colorhsva + [2,0,0,0];
color = [rand.uniform01,rand.uniform01,rand.uniform01,1];
colorhsva = [360*rand.uniform01,1,1,1];
}