draw_crosshair_width_ext

Downloaddraw_crosshair_width_ext(x,y,width,col1,col2,col3,col4)   Draws a horizontal and vertical pair of lines of the given width and the given colors intersecting at the given point.
/*
**  Usage:
**      draw_crosshair_width_ext(x,y,width,col1,col2,col3,col4)
**
**  Arguments:
**      x,y         a position in the room
**      width       the width of the lines
**      col1        color of the first end point of the horizontal line
**      col2        color of the second end point of the horizontal line
**      col3        color of the first end point of the vertical line
**      col4        color of the second end point of the vertical line
**
**  Returns:
**      nothing
**
**  Notes:
**      Draws a horizontal and vertical pair of lines
**      of the given width and the given colors
**      intersecting at the given point.
**
**  GMLscripts.com
*/

{
    draw_line_width_color(0,argument1,room_width,argument1,argument2,argument3,argument4);
    draw_line_width_color(argument0,0,argument0,room_height,argument2,argument5,argument6);
}

Click if you've used this script[Please Login]
Projects: 6


comments powered by Disqus