I have the following code to draw a simple blue line. I've checked if the coordinates are within the camera and ive disabled all layers too to check if that was the problem. this code is in a draw event. what did I do wrong?
draw_primitive_begin(pr_linelist)
draw_vertex_color(100, 70, c_blue, 1)
draw_vertex_color(200, 70, c_blue, 1)
draw_primitive_end()
