I simply cannot get this to work right. I need an object to act according to the image_angle of the object it is colliding with. My code looks something like this:
if collision_point(x,y,obj_example,true,true)
{
hspeed+=lengthdir_x(1,other.image_angle)
vspeed+=lengthdir_y(1,other.image_angle)
}But other.image_angle just seems to keep spitting out a value of 0.
What am I doing wrong?











