mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-10 20:45:35 +01:00
36 lines
1.3 KiB
Plaintext
36 lines
1.3 KiB
Plaintext
/// @description init
|
|
if !ready exit;
|
|
|
|
#region base UI
|
|
draw_sprite_stretched(s_dialog_bg, 0, dialog_x, dialog_y, dialog_w, dialog_h);
|
|
if(sFOCUS)
|
|
draw_sprite_stretched(s_dialog_active, 0, dialog_x, dialog_y, dialog_w, dialog_h);
|
|
|
|
draw_set_text(f_p0, fa_left, fa_top, c_ui_blue_ltgrey);
|
|
draw_text(dialog_x + ui(24), dialog_y + ui(16), "Grid settings");
|
|
#endregion
|
|
|
|
#region draw
|
|
var yy = dialog_y + ui(64);
|
|
var ww = ui(128);
|
|
|
|
cb_enable.active = sFOCUS;
|
|
cb_enable.hover = sHOVER;
|
|
draw_set_text(f_p1, fa_left, fa_center, c_white);
|
|
draw_text(dialog_x + ui(32), yy, "Snap to grid");
|
|
cb_enable.draw(dialog_x + dialog_w - ww / 2, yy, PANEL_GRAPH.node_drag_snap, mouse_ui,, fa_center, fa_center);
|
|
|
|
yy += ui(40);
|
|
tb_size.active = sFOCUS;
|
|
tb_size.hover = sHOVER;
|
|
draw_set_text(f_p1, fa_left, fa_center, c_white);
|
|
draw_text(dialog_x + ui(32), yy, "Grid size");
|
|
tb_size.draw(dialog_x + dialog_w - ui(24), yy, ww, TEXTBOX_HEIGHT, PANEL_GRAPH.graph_line_s, mouse_ui,, fa_right, fa_center);
|
|
|
|
yy += ui(40);
|
|
sl_opacity.active = sFOCUS;
|
|
sl_opacity.hover = sHOVER;
|
|
draw_set_text(f_p1, fa_left, fa_center, c_white);
|
|
draw_text(dialog_x + ui(32), yy, "Grid opacity");
|
|
sl_opacity.draw(dialog_x + dialog_w - ui(24), yy, ww, TEXTBOX_HEIGHT, PANEL_GRAPH.grid_opacity, mouse_ui, ui(52), fa_right, fa_center);
|
|
#endregion |