mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-10 20:45:35 +01:00
21 lines
392 B
Plaintext
21 lines
392 B
Plaintext
/// @description init
|
|
event_inherited();
|
|
|
|
#region data
|
|
dialog_w = 360;
|
|
dialog_h = 360;
|
|
|
|
destroy_on_click_out = true;
|
|
|
|
value_target = noone;
|
|
#endregion
|
|
|
|
#region data
|
|
function setValueTarget(value) {
|
|
value_target = value;
|
|
}
|
|
|
|
editWidget = new curveBox(
|
|
function(_modified) { value_target.inter_curve = _modified; },
|
|
function(type) { value_target.curve_type = type; });
|
|
#endregion |