mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-10 20:45:35 +01:00
20 lines
338 B
Plaintext
20 lines
338 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; });
|
|
#endregion |