Guyver's Bane 38 Posted November 1, 2015 (edited) Is there a way to draw vertical lines in ace along with the horizontal ones? Like is there a draw_vertical_line method? Edited November 1, 2015 by Guyver's Bane Share this post Link to post Share on other sites
+ Glasses 606 Posted November 1, 2015 There's none, but you can use this one. class Window_Base < Window def draw_vert_line(x, y, length) color = normal_color color.alpha = 48 contents.fill_rect(x, y, 2, length, color ) end end And then you'll be able to draw vertical lines with draw_vert_line(x, y, length). 1 Share this post Link to post Share on other sites
Guyver's Bane 38 Posted November 1, 2015 You are awesome sir, thanks so much! Share this post Link to post Share on other sites
Rikifive 3,411 Posted November 2, 2015 I have moved this thread to 'Ruby School for Thought'. (= This thread is closed, due to being solved. (= Share this post Link to post Share on other sites