Due to the setup of my js code (using barba.js in my project), I need to get three.js to work as a dynamic import rather than static.
In a nutshell I have two animations that are running diffferent versions of three.js through different means.
The first svgRenderer animation uses a top level import.
The second relies on a simple inline cdn:
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/88/three.min.js"></script>
If I leave the import declaration at top level, on load like so:
import * as THREE from "https://cdn.skypack.dev/[email protected]";
import { SVGRenderer } from "https://cdn.skypack.dev/[email protected]/examples/jsm/renderers/SVGRenderer.js";
import { OBJLoader } from "https://cdn.skypack.dev/[email protected]/examples/jsm/loaders/OBJLoader.js";
âŚit causes an error with an animation on the subpage that uses the CDN to load Three.
The first animation uses the svgRenderer and OBJLoader, and I can only get it to load by sticking with the top level import module (âimport * as THREEâ).
Comment that import * as THREE line out, and the second animation works.
So thereâs a clash caused by using these two different versions of three.js.
I canât seem to find a version of three.min.js that works either as a dynamic import or inline script for both animations.
Iâve learnt a lot investigating this, but still have a way to go before properly understanding how npm or webpack might be able to help with this clash!
If thereâs a dynamic import library thatâs fairly easy to use, or an async/await piece of code I could use to replace the top level import that would be great!
Hope all that makes sense (Iâm still new to all this!) and thanks loads in advance!