If you created beam sprites with transparency, the auto-crop feature can crop the head, body and tail sprites differently.
This causes the sprites to be misaligned.
Let's look at the following sprites for head, body and tail
In the top image the transparent part of the sprites is fully transparent (alpha=000) and thus is being cropped automatically.
The sprites have been cropped differently due to the different heights of the non transparent part, causing the misalignment.
In the bottom image the transparent part of the sprites has an alpha=001 to prevent any cropping.
The sprites are aligned correctly.
Workaround:
When creating beam sprites avoid full transparency and use an alpha value of 001 instead.
Edit:
Actual solution:
Add
Code: Select all
flags = { "no-crop" }