@s25studio/sinth 1.0.2 → 1.0.4
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/README.md +4 -4
- package/dist/esm/sinth.js +472 -447
- package/dist/{sinth-1.0.2.min.js → sinth-1.0.4.min.js} +3 -3
- package/dist/sinth.min.js +3 -3
- package/dist/three-0.184.0.min.js +2 -2
- package/dist/three.min.js +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @s25studio/sinth
|
|
2
2
|
|
|
3
|
-
Sinth 1.0.
|
|
3
|
+
Sinth 1.0.4 — build snapshot `v53`.
|
|
4
4
|
|
|
5
5
|
Real-time 3D pattern engine for the web. Every release is published under a new
|
|
6
6
|
version, so a URL you pin today serves the same bytes forever.
|
|
@@ -34,7 +34,7 @@ takes Three straight from Three's own package:**
|
|
|
34
34
|
}
|
|
35
35
|
</script>
|
|
36
36
|
<script type="module">
|
|
37
|
-
import { createSinthEmbed } from 'https://unpkg.com/@s25studio/sinth@1.0.
|
|
37
|
+
import { createSinthEmbed } from 'https://unpkg.com/@s25studio/sinth@1.0.4/dist/esm/sinth.js';
|
|
38
38
|
|
|
39
39
|
createSinthEmbed({ container: document.querySelector('#hero'), preset: 'waves' });
|
|
40
40
|
</script>
|
|
@@ -47,8 +47,8 @@ entry to it rather than adding a second.
|
|
|
47
47
|
## Plain script tags — when the page cannot use modules
|
|
48
48
|
|
|
49
49
|
```html
|
|
50
|
-
<script src="https://unpkg.com/@s25studio/sinth@1.0.
|
|
51
|
-
<script src="https://unpkg.com/@s25studio/sinth@1.0.
|
|
50
|
+
<script src="https://unpkg.com/@s25studio/sinth@1.0.4/dist/three-0.184.0.min.js"></script>
|
|
51
|
+
<script src="https://unpkg.com/@s25studio/sinth@1.0.4/dist/sinth-1.0.4.min.js"></script>
|
|
52
52
|
```
|
|
53
53
|
|
|
54
54
|
Three first — `sinth.min.js` reads the global `THREE` that `three.min.js`
|