is it possible to make the chat on 3d

i mean is it possible to draw the chat on a 3d game because if you initialize it doesnt appear because it draws it as 2d but not working i mean on

{
d3d_set_projection_ortho(0,0,640,480,0);
d3d_set_hidden(false);

//everything i want to draw goes here

draw_set_alpha(1);
d3d_set_hidden(true);
}

Replies (5)

Last message on 24 Jan 2019

Size43 (Administrator) on 28 Dec 2018, 22:34:43
You can use gms_draw_toggle to enable/disable automatic drawing of the chat.

Then you can manually draw the chat using gms_chat_draw().
BonniekawaiidesuG (Topicstarter) on 29 Dec 2018, 23:32:27
i tried it but it only appears the gray box and when i try to use it it doesnt work how can i fix it
BonniekawaiidesuG (Topicstarter) on 29 Dec 2018, 18:43:25
like:
///create
gms_draw_toggle(true)

///draw
{
d3d_set_projection_ortho(0,0,640,480,0);
d3d_set_hidden(false);

gms_chat_draw()

draw_set_alpha(1);
d3d_set_hidden(true);
}
Size43 (Administrator) on 5 Jan 2019, 12:37:39
You should set it to false if you want to draw the chat yourself.
BonniekawaiidesuG (Topicstarter) on 24 Jan 2019, 02:48:26
oops sorry xd