mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-11 04:54:06 +01:00
26 lines
851 B
Plaintext
26 lines
851 B
Plaintext
#region samples
|
|
globalvar SAMPLE_PROJECTS;
|
|
SAMPLE_PROJECTS = ds_list_create();
|
|
#endregion
|
|
|
|
function LOAD_SAMPLE() {
|
|
ds_list_clear(SAMPLE_PROJECTS);
|
|
var _l = get_program_directory() + "Sample Projects";
|
|
var file = file_find_first(_l + "/*", fa_directory);
|
|
while(file != "") {
|
|
if(filename_ext(file) == ".json" || filename_ext(file) == ".pxc") {
|
|
var full_path = _l + "\\" + file;
|
|
var f = new FileContext(string_replace(filename_name(file), filename_ext(file), ""), full_path);
|
|
var icon_path = string_replace(full_path, filename_ext(full_path), ".png");
|
|
|
|
if(file_exists(icon_path)) {
|
|
f.spr = sprite_add(icon_path, 0, false, false, 0, 0);
|
|
sprite_set_offset(f.spr, sprite_get_width(f.spr) / 2, sprite_get_height(f.spr) / 2);
|
|
}
|
|
|
|
ds_list_add(SAMPLE_PROJECTS, f);
|
|
}
|
|
file = file_find_next();
|
|
}
|
|
file_find_close();
|
|
} |