이펙트아카데미 특강/외주/커뮤니티
It was done with just a particle system, and it is particle mesh render within trail component. The issue of the effect is how to create three different swing trail on a single plane.
a. First, create the sin node and add with time.
b. V coordinate remap to 1~ -1, and then add to Sin. You can fin the Sin wave animation.
c. As the result, value goes to be more than one. It has to remap to 1~ -1.
d. Multiply U coordinate to increase the swing animation from left to right (0~1) and add to the origin V coordinate.
e. Append swing V and origin U to get the swing UV for trail map.
3. In order to make the trail animation to be more variety, need to add some distortion into UV. The Flow UV block work with two motion from B channel of texture and multiply the parameter value to control the strength of distortion. Multiply U coordinate to keep shape in the start position (left) and more distortion to end (right).
4. Create the edge mask within UV coordinate to clean the shape animation over the edge.
5. Dissolve block is doing the dissolve in the end of trail.
a. Add Flow UV to make it naturally.
b. To add frac node, it will let the value from 0~1, even it is going to be huge from time. But the texture have to be seamless. In this way, it could maintain the motion value and some performance.
c. Modify the ramp (0~1) to increase effect of dissolve.
6. Lerp within U coordinate to create two color from start (left) to end (right).
Shader的部分就到此完成
Done
The render is mesh particle and add the trail component. You can find the detail setting in the below picture.
It is the breakdown of the Sin Wave effect.