Pixel-Composer/objects/o_dialog_preview_grid/Draw_64.gml

50 lines
2.0 KiB
Plaintext
Raw Normal View History

2022-01-13 05:24:03 +01:00
/// @description init
if !ready exit;
#region base UI
2022-11-18 03:20:31 +01:00
draw_sprite_stretched(THEME.dialog_bg, 0, dialog_x, dialog_y, dialog_w, dialog_h);
2022-11-03 11:44:49 +01:00
if(sFOCUS)
2022-11-18 03:20:31 +01:00
draw_sprite_stretched_ext(THEME.dialog_active, 0, dialog_x, dialog_y, dialog_w, dialog_h, COLORS._main_accent, 1);
2022-01-13 05:24:03 +01:00
2022-11-18 03:20:31 +01:00
draw_set_text(f_p0, fa_left, fa_top, COLORS._main_text_title);
2022-11-03 11:44:49 +01:00
draw_text(dialog_x + ui(24), dialog_y + ui(16), "Grid settings");
2022-01-13 05:24:03 +01:00
#endregion
#region draw
2022-11-03 11:44:49 +01:00
var yy = dialog_y + ui(64);
var ww = ui(128);
2022-01-13 05:24:03 +01:00
2022-11-03 11:44:49 +01:00
cb_enable.active = sFOCUS;
cb_enable.hover = sHOVER;
2022-11-18 03:20:31 +01:00
draw_set_text(f_p1, fa_left, fa_center, COLORS._main_text);
2022-11-03 11:44:49 +01:00
draw_text(dialog_x + ui(32), yy, "Enabled");
cb_enable.draw(dialog_x + dialog_w - ww / 2, yy, PANEL_PREVIEW.grid_show, mouse_ui,, fa_center, fa_center);
2022-09-21 06:09:40 +02:00
2022-11-03 11:44:49 +01:00
yy += ui(40);
tb_width.active = sFOCUS;
tb_width.hover = sHOVER;
2022-11-18 03:20:31 +01:00
draw_set_text(f_p1, fa_left, fa_center, COLORS._main_text);
2022-11-03 11:44:49 +01:00
draw_text(dialog_x + ui(32), yy, "Grid width");
tb_width.draw(dialog_x + dialog_w - ui(24), yy, ww, TEXTBOX_HEIGHT, PANEL_PREVIEW.grid_width, mouse_ui,, fa_right, fa_center);
2022-01-13 05:24:03 +01:00
2022-11-03 11:44:49 +01:00
yy += ui(40);
tb_height.active = sFOCUS;
tb_height.hover = sHOVER;
2022-11-18 03:20:31 +01:00
draw_set_text(f_p1, fa_left, fa_center, COLORS._main_text);
2022-11-03 11:44:49 +01:00
draw_text(dialog_x + ui(32), yy, "Grid height");
tb_height.draw(dialog_x + dialog_w - ui(24), yy, ww, TEXTBOX_HEIGHT, PANEL_PREVIEW.grid_height, mouse_ui,, fa_right, fa_center);
yy += ui(40);
sl_opacity.active = sFOCUS;
sl_opacity.hover = sHOVER;
2022-11-18 03:20:31 +01:00
draw_set_text(f_p1, fa_left, fa_center, COLORS._main_text);
2022-11-03 11:44:49 +01:00
draw_text(dialog_x + ui(32), yy, "Grid opacity");
sl_opacity.draw(dialog_x + dialog_w - ui(24), yy, ww, TEXTBOX_HEIGHT, PANEL_PREVIEW.grid_opacity, mouse_ui, ui(52), fa_right, fa_center);
yy += ui(40);
cl_color.active = sFOCUS;
cl_color.hover = sHOVER;
2022-11-18 03:20:31 +01:00
draw_set_text(f_p1, fa_left, fa_center, COLORS._main_text);
2022-11-03 11:44:49 +01:00
draw_text(dialog_x + ui(32), yy, "Grid Color");
cl_color.draw(dialog_x + dialog_w - ui(24) - ww, yy - TEXTBOX_HEIGHT / 2, ww, TEXTBOX_HEIGHT, PANEL_PREVIEW.grid_color, mouse_ui);
2022-01-13 05:24:03 +01:00
#endregion