meccha-chameleon 0.1.0

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.
@@ -0,0 +1,14 @@
1
+ /**
2
+ * MecchaChameleon preset: "mecha1" (pose 1) — ESM wrapper.
3
+ * The data URIs live once in ./mecha1.js (CommonJS); this file re-exports them
4
+ * so `import mecha1 from 'meccha-chameleon/presets/mecha1'` works. Importing
5
+ * the main library never pulls this in, so it stays tree-shakeable.
6
+ *
7
+ * import MecchaChameleon from 'meccha-chameleon';
8
+ * import mecha1 from 'meccha-chameleon/presets/mecha1';
9
+ * MecchaChameleon.mount({ ...mecha1, target: '#hero' });
10
+ */
11
+ import mecha1 from './mecha1.js';
12
+
13
+ export const { image, normalMap, shadow } = mecha1;
14
+ export default mecha1;