Pixel-Composer/scripts/action_loader/action_loader.gml

13 lines
254 B
Plaintext
Raw Normal View History

2023-08-02 19:11:57 +02:00
#region action
global.ACTIONS = [];
function __initAction() {
global.ACTIONS = [];
var root = DIRECTORY + "Actions";
directory_verify(root);
2023-08-02 19:11:57 +02:00
if(check_version($"{root}/version"))
2023-08-02 19:11:57 +02:00
zip_unzip("data/Actions.zip", DIRECTORY);
}
#endregion