Pixel-Composer/objects/o_dialog_keyframe_curve/Create_0.gml

20 lines
346 B
Plaintext
Raw Permalink Normal View History

2022-01-13 05:24:03 +01:00
/// @description init
event_inherited();
#region data
2022-11-03 11:44:49 +01:00
dialog_w = ui(360);
dialog_h = ui(360);
2022-01-13 05:24:03 +01:00
destroy_on_click_out = true;
value_target = noone;
#endregion
#region data
function setValueTarget(value) {
value_target = value;
}
editWidget = new curveBox(
2022-01-14 02:44:58 +01:00
function(_modified) { value_target.inter_curve = _modified; });
2022-01-13 05:24:03 +01:00
#endregion