x_ite-sog-parser 1.2.0 → 1.2.1

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -9,14 +9,14 @@ SOG File Format Parser for [X_ITE](https://create3000.github.io/x_ite/) for 3D G
9
9
 
10
10
  ## Usage
11
11
 
12
- Include the script after X_ITE:
12
+ Include the script before X_ITE:
13
13
 
14
14
  ```html
15
+ <script defer src="https://cdn.jsdelivr.net/npm/x_ite-sog-parser@1.2.1/dist/x_ite-sog-parser-2.min.js"></script>
15
16
  <script defer src="https://cdn.jsdelivr.net/npm/x_ite@VERSION/dist/x_ite.min.js"></script>
16
- <script defer src="https://cdn.jsdelivr.net/npm/x_ite-sog-parser@1.2.0/dist/x_ite-sog-parser-2.min.js"></script>
17
17
  <!-- or as ES module -->
18
+ <script type="module" src="https://cdn.jsdelivr.net/npm/x_ite-sog-parser@1.2.1/dist/x_ite-sog-parser-2.min.js"></script>
18
19
  <script type="module" src="https://cdn.jsdelivr.net/npm/x_ite@VERSION/dist/x_ite.min.mjs"></script>
19
- <script type="module" src="https://cdn.jsdelivr.net/npm/x_ite-sog-parser@1.2.0/dist/x_ite-sog-parser-2.min.js"></script>
20
20
  ```
21
21
 
22
22
  You can now load `.sog` files directly using the `src` attribute, but you can also use `.sog` files as source of an Inline node.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "x_ite-sog-parser",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "3DGS SOG File Format Parser for X_ITE",
5
5
  "main": "dist/x_ite-sog-parser-2.js",
6
6
  "module": "dist/x_ite-sog-parser-2.js",