As I can customize the width of the chat box?
Sorry if annoyed with so many questions, but I'll make my first game using Game Maker Server. Please, tell me how to customize the width of the chat box, there are a function, I know it, is "gms_chat_bind_position(x1,y1,x2,y2)" but the problem is that when use this function the chat not follows the view and I don't know which means "x1","y1" is the position or is the length?
Replies (1)
Last message on 4 Mar 2016
Size43
(Administrator)
on
4 Mar 2016, 13:59:18
It defines the top-left corner of the chat and the bottom-right corner of the chat. So (x1, y1) is the top left point, and (x2, y2) is the bottom right point. (The other two points of the rectangle/chat can then be made by combining the coordinates. The bottom left point is (x1, y2) and the top right point is (x2, y1))