Jump to content


Kirbya

Member Since 09 Jul 2007
Offline Last Active Jan 22 2013 03:19 PM

Posts I've Made

In Topic: Finding Distance With X Grid And Not Y Grid

17 February 2010 - 07:44 PM

Try

dis_x = point_distance(x, 0, other.x, 0);

or

dis_x = abs(x - other.x);

In Topic: Nearest Instance With Qualifier?

25 November 2009 - 08:29 PM

You can look at the script in my signature, it'll return an array back of all the objects, which you can loop through quickly to see what is sticky and which is not.

In Topic: Sword Movement Trail

31 August 2009 - 08:46 PM

Try drawing a primitive from the sword tip to the handle, using an array to keep track of those 2 points. Then when it moves lets say, forward, or in a slashing motion, track the points and draw it as a primitive. Then just figure out the alpha interpolation and draw it.

Sounds easy enough but I couldn't tell you how to do it, I haven't used GM in a while.

In Topic: Atomic Super Boss

14 March 2009 - 05:56 PM

Very solid game, my new favorite shmup.

In Topic: Rotating A Point Around The Room Center

23 February 2009 - 01:06 AM

Now it works fine for me too, not sure what was going on but thanks to everyone that helped.