INJECT CSS 2 - Use CSS stylesheet in Construct 3.
Because you can do this via Vanilla C3. Add a JS script in the editor and insert this
runOnStartup(async runtime =>
{
runtime.addEventListener("beforeprojectstart", () => LoadExternalScript(runtime));
});
async function LoadExternalScript(runtime)
await runtime.assets.loadScripts("https://apis.google.com/js/api.js");
await runtime.assets.loadScripts("https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js");
}
I think it's better to use the official way instead of a custom option that replicates the official one.
I was thinking about this possibility, thanks for clarifying
i use your plugin to load 8 styles and 11 scripts xD