mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-14 06:23:55 +01:00
28 lines
619 B
Plaintext
28 lines
619 B
Plaintext
function closeProject(project) {
|
|
project.active = false;
|
|
array_remove(PROJECTS, project);
|
|
if(array_length(PROJECTS) == 0) {
|
|
PROJECT = new Project();
|
|
PROJECTS = [ PROJECT ];
|
|
}
|
|
|
|
var panels = findPanels("Panel_Graph");
|
|
|
|
for( var i = array_length(panels) - 1; i >= 0; i-- ) {
|
|
var panel = panels[i];
|
|
//print($" Check {panel.project.path}");
|
|
if(panel.project != project)
|
|
continue;
|
|
|
|
if(array_length(panels) == 1) {
|
|
panel.setProject(PROJECT);
|
|
panel.onFocusBegin();
|
|
panel.resetContext();
|
|
} else {
|
|
panel.panel.remove(panel);
|
|
array_remove(panels, panel);
|
|
}
|
|
}
|
|
|
|
project.cleanup();
|
|
} |