Info

Statistics

  • Download count972 total downloads
  • Latest download count 397 downloads of latest version
  • Average download count1 downloads per day average

Owners

Description

INJECT CSS 2 - Use CSS stylesheet in Construct 3

Example Files

Add, change and delete CSS (and style class)

Discussion

  • 7 Comments

  • Order by
Want to leave a comment? Login or Register an account!
  • Hey,

    don't work anymore on version r237 with advanced minify.

  • 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.

  • 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.