Hi, I’m making a small game with some effects using CBE plugin. The hero will catch some energy items on the go. I would like to make the energy item fly to the container with a trail. I use simple particle effect and move it (x, y) per frame. The result is quite good but the trail is not smooth. See my result
How can I make the trail smooth? Anyone have any ideas to achieve smooth trail.
My code:
function Energy:enterFrame(event) -- omit object moving calculation self.vent:set({emitX = self.view.x, emitY = self.view.y}) end
Thanks in advance!