cheryglsljs 1.1.16 → 1.1.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cheryglsljs",
3
- "version": "1.1.16",
3
+ "version": "1.1.18",
4
4
  "description": "A Three.js + GLSL-based wave effect library.",
5
5
  "main": "dist/cherry.js",
6
6
  "module": "dist/cherry.js",
package/src/cherry.js CHANGED
@@ -6,8 +6,8 @@ import { ImageTransition2 } from "./effects/TransitionEffect/Effect";
6
6
  export { CherryWave, ImageTransition1, ImageTransition2 };
7
7
 
8
8
  // Default export for ESM/CJS
9
- export default {
10
- CherryWave,
11
- ImageTransition1,
12
- ImageTransition2
13
- };
9
+ // export default {
10
+ // CherryWave,
11
+ // ImageTransition1,
12
+ // ImageTransition2
13
+ // };
package/src/utils/init.js CHANGED
@@ -1,4 +1,4 @@
1
- // import *as THREE from 'three';
1
+ import *as THREE from 'three';
2
2
  const Scene = () => new THREE.Scene();
3
3
  const camera = () => new THREE.PerspectiveCamera(
4
4
  75,