Page 1 of 1

How to make Trails

PostPosted: Mon Feb 13, 2012 12:21 pm
by Clokio
How to make trail that follow a object :?:

Thanks :wink:

Re: How to make Trails

PostPosted: Sun May 20, 2012 5:39 pm
by Bee-Ant
Create 2 actors, "Object" and "Trail". and then give them the same animations.

Object -> Draw Actor -> Script Editor:
Code: Select all
CreateActor("Trail", "Animation", "(none)", "(none)", 0, 0, false);


Trail -> Draw Actor -> Script Editor:
Code: Select all
transp+=0.1;
if(transp>=1)
{
    DestroyActor("Event Actor");
}