@hefty-studios/arena-game-data 1.0.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.
- package/README.md +19 -0
- package/game-data.bundle.json +30469 -0
- package/game-data.bundle.schema.json +426 -0
- package/index.d.ts +4 -0
- package/index.js +4 -0
- package/package.json +31 -0
package/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# @hefty-studios/arena-game-data
|
|
2
|
+
|
|
3
|
+
Generated Arena Game data bundle for website and tooling consumers.
|
|
4
|
+
|
|
5
|
+
This package is produced from the Unity data assets in `Assets/DataAssets/`.
|
|
6
|
+
|
|
7
|
+
## Usage
|
|
8
|
+
|
|
9
|
+
```js
|
|
10
|
+
import gameData from "@hefty-studios/arena-game-data";
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
You can also import the raw generated files directly:
|
|
14
|
+
|
|
15
|
+
```js
|
|
16
|
+
import schema from "@hefty-studios/arena-game-data/game-data.bundle.schema.json" with { type: "json" };
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Package version: 1.0.0
|