Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

For native functions (see limitations), you’ll want to use live_function_add with your own function for implementation, so

live_function_add("directory_contents(dname)", function(dname) {
    return directory_contents(dname);
});

GMLiveAPI shouldn’t be touched by hand and is like that to minimize impact on compile times.

Thank you so much! I never noticed there's this function. it works like a charm now!  :DD