Aura in GE
Posted: Sat Jul 21, 2012 9:55 pm
Pretty neat effect, simple to do
Take this image, and then clone it about 4 times, then add this code and enjoy. Note that you can't see it on a browser because it has white and alpha channels.
Create Actor:
Take this image, and then clone it about 4 times, then add this code and enjoy. Note that you can't see it on a browser because it has white and alpha channels.
Create Actor:
- Code: Select all
yvelocity=-(2-cloneindex);
switch(cloneindex)
{
case 0:
xvelocity=1;
r=255;
g=0;
b=255;
break;
case 1:
xvelocity=.7;
g=255;
r=0;
b=0;
break;
case 2:
xvelocity=-1.2;
g=255;
b=255;
r=0;
break;
case 3:
xvelocity=.5;
r=0;
g=0;
b=255;
break;
}