mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-11 04:54:06 +01:00
23 lines
463 B
Plaintext
23 lines
463 B
Plaintext
/// @description init
|
|
event_inherited();
|
|
|
|
#region data
|
|
dialog_w = ui(280);
|
|
dialog_h = ui(60 + 40 * 3);
|
|
|
|
destroy_on_click_out = true;
|
|
#endregion
|
|
|
|
#region data
|
|
cb_grid = new checkBox(function() {
|
|
PANEL_GRAPH.show_grid = !PANEL_GRAPH.show_grid;
|
|
})
|
|
|
|
cb_dim = new checkBox(function() {
|
|
PANEL_GRAPH.show_dimension = !PANEL_GRAPH.show_dimension;
|
|
})
|
|
|
|
cb_com = new checkBox(function() {
|
|
PANEL_GRAPH.show_compute = !PANEL_GRAPH.show_compute;
|
|
})
|
|
#endregion |