GameMaker (2.0 - 2.2.x)
Icon

Easy Image Trail - After Image

Synthetic Pixel Games

You must be logged in to obtain assets

Description

Try my new Mobile Game Development Course 75% OFF!

Easy Image Trail or After Image

This script is designed to make adding graphical effects like image trails (also known as after images) as easy as possible to implement into your game.

This asset contains 1 script. Yes you read that right 1 self contained script. In order to add that awesome after image your after all you have to do is call the following script in your draw event.

scr_after_image()

This script expects 4 arguments.

  • Max Length

  • Spacing

  • Fade Length

  • Colour (default c_white)

Script is commented thoroughly with example.

Max length is exactly how it sounds. How many sprites should comprise the length of your trail? higher number means longer after image and smaller numbers mean a shorter after image.

Spacing is also as it sounds. How much space is between each image in the image trail. So if you provide the number 2 then it will wait 2 steps before updating the next image position. If you set this to 0 then all the images will be bunched closer together. Higher means farther apart lower means closer together. I recommend a minimum of 2.

Fade length is how long it takes for a after image to fade out.

Colour is pretty self explanatory. If you use the default c_white then the after image will be of the same sprite of lower alpha values. If you decide to use something like c_aqua or make_colour_rgb then the sprite will be coloured in the after image.

End User Licence Agreement (EULA).

Age Rating: None

Version

GMS2 - Version 2.1.0. Published August 18, 2018

Change log 08/18/2018

Resolved memory leak issue. Added cleanup script to event cleanup. When the player would change rooms the ds_lists would be left in memory. To resolve this I added a simple clean up to delete the ds_lists on the clean up event.

Added a new project that uses arrays.

This asset's design was intended to be one usable script without any outside help. For example you would NOT need to init any variables in the create event. However after fixing the memory leak this was impossible with ds_lists. By having to add a script to the given object's clean up event this means it is not a single script. I reworked the asset to use arrays. GMS automatically cleans up arrays on its own when the game ends or when the room changes or even if the instance itself is destroyed.

Enjoy the update and good luck on all your Game Development Endeavors.

Synthetic Pixel.

Older Updates.

2.0 update.

*Added more comments

*changed the script to include a new argument for how long it takes a after image to fade out this gives the user more control

*Fixed an issue with spacing. Spacing was also causing the alpha to update at the same spacing as adding a new image this resulted in images lingering longer than the should. To fix this I added the new argument fade_length this way you can control the alpha fade outside of spacing. The images can create at whatever spacing you like and each image will have its alpha update each step.

Note having the ability to set fade length means you need to be careful with the number of after images. If the fade_Length is to short it will not display all of the images. A good setting is scr_after_image(5, 4, 0.05, c_white).

2.0.1

Removed a few old comments. Wasn't meant to be left in the code.

Loading, please wait

Package contents

Loading, please wait

What is the issue?

Loading, please wait