Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
ardieffects:trace [2018/07/04 22:09] optrix [Parameters] |
ardieffects:trace [2018/07/04 22:22] (current) optrix [Examples] |
||
|---|---|---|---|
| Line 18: | Line 18: | ||
| Default: **0.5**// | Default: **0.5**// | ||
| + | The percentage portion of the assets mesh to cut off to use as a particle for the trail. | ||
| ===Colour=== | ===Colour=== | ||
| Line 42: | Line 42: | ||
| ====Examples==== | ====Examples==== | ||
| + | |||
| + | <code> | ||
| + | <trace colour="1,0,0,0.5" updaterate=0.2 /> | ||
| + | </code> | ||
| + | |||
| + | > The above code will add a trace to the asset that will have a **Red** color and have an Alpha transparency value of **0.5**. The UpdateRate is set to **0.2** which will cause it to release trail particles close together in a very tight manner. | ||
| + | |||
| + | <code> | ||
| + | <trace axis="1,0,0" cut="1" colour="0,1,0,1" active="0" updaterate="2" /> | ||
| + | </code> | ||
| + | |||
| + | > The above code will add a trace to the asset that will have a **Green** color and have an Alpha transparency of **1** making it completely opaque. The trail will have an active value of **0** meaning it will begin deactivated and is expected to be activated at a later time. With an UpdateRate of **2**, trail particles will be released further apart, more akin to a breadcrumb trail rather than in a consistent line. | ||