Collision (21)

wall_sliding(obj)
description : Slide in a wall (don't uses sprite for collision but only a point).
Put it in end step.

Insert by Solid Snake in 2013-01-28 20:29:39.

poly_intersection_list(dslist,poly1,poly2)
description : Return a ds_list containing the x,y position with this structure
- main list
. sublist
*x
*y

Insert by Tizsoft in 2013-01-27 11:27:17.

poly_create(xorigin,yorigin)
description : Creates new polygon

Insert by Tizsoft in 2013-01-27 10:53:38.

poly_draw(polyID,texture)
description : Draws the polygon with the given id, using a texture

Insert by Tizsoft in 2013-01-27 10:53:38.

poly_get_direction(polyID)
description : returns the polygon rotation in degrees (0-360)

Insert by Tizsoft in 2013-01-27 10:53:38.

poly_get_x(polyID)
description : returns the polygon x in the room

Insert by Tizsoft in 2013-01-27 10:53:38.

poly_get_y(polyID)
description : returns the polygon y in the room

Insert by Tizsoft in 2013-01-27 10:53:38.

poly_meeting_line(poly1,poly2)
description : returns true if the 2 polygon are colliding.
Checks if them intersects

Insert by Tizsoft in 2013-01-27 10:53:38.

poly_meeting_vertex(poly1,poly2)
description : Returns true if the two polygons* are colliding.
Checks if the one's vertex is inside the other.

*Also concave polygons

Insert by Tizsoft in 2013-01-27 10:53:38.

poly_point_add(polyID,x,y)
description : Adds a point (coordinates relative to the center) to the poly with the given id

Insert by Tizsoft in 2013-01-27 10:53:38.

Go to page: [1] [2] [3]