INJECT CSS 2 - Use CSS stylesheet in Construct 3
Add, change and delete CSS (and style class)
took me quite a while to understand how to use it on another plugin, but I managed to do what I wanted with it in the end, nice job.
Hey,
don't work anymore on version r237 with advanced minify.
Hi, you are right!
I just uploaded a new version (0.0.0.3)
Thank you :)
removed the inject JS option ? why ?
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