Pixel-Composer/objects/o_main/Alarm_3.gml

11 lines
207 B
Text
Raw Normal View History

2022-01-13 05:24:03 +01:00
/// @description file drop
#region drop
PANEL_GRAPH.stepBegin();
if(PANEL_GRAPH.dropFile(file_dropping)) {
2022-12-10 05:06:01 +01:00
Render(false);
2022-01-13 05:24:03 +01:00
} else
2022-01-29 14:25:18 +01:00
load_file_path(file_dropping, true);
2022-01-13 05:24:03 +01:00
file_dropping = "";
#endregion