mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2025-02-05 09:45:17 +01:00
21 lines
392 B
Text
21 lines
392 B
Text
|
/// @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
|