ID:2253422
 
Hello, I was wondering what is the most simplest and effective way to make a person "Fly". At the moment I have an icon_state "flying" and it works, but I realize I'd have to do it for all potential clothing. Could there be an easier way to do this or would I have to stick to this way?
thats how all flying things are
...is your flying icon_state different from standing?
In response to GreatPirateEra
Yes it is, I was sorta hoping I could have a still icon_state and just move it up and down through code so that I'd have the clothing automatically move up with it.
You could use animate() for that.

animate(src,pixel_y=48,time=5,loop=-1)
animate(pixel_y=0,time=5,loop=-1)