@auraindustry/aurajs 0.0.5 → 0.0.6

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 CHANGED
@@ -32,5 +32,7 @@ npm run play
32
32
  ## Docs
33
33
 
34
34
  - Repo README: <https://github.com/Aura-Industry/aurajs>
35
- - Core API: <https://github.com/Aura-Industry/aurajs/blob/main/packages/aurascript/docs/api-contract-v1.md>
36
- - 3D API: <https://github.com/Aura-Industry/aurajs/blob/main/packages/aurascript/docs/api-contract-3d-v2.md>
35
+ - Docs hub: <https://aurajsgg.com/docs>
36
+ - Game Dev API handbook: <https://github.com/Aura-Industry/aurajs/blob/main/packages/aurascript/docs/external/game-dev-api/README.md>
37
+ - Core API: <https://github.com/Aura-Industry/aurajs/blob/main/packages/aurascript/docs/api-contract.md>
38
+ - 3D API: <https://github.com/Aura-Industry/aurajs/blob/main/packages/aurascript/docs/api-contract-3d.md>
@@ -31,6 +31,15 @@
31
31
  "maxP95FrameTimeMs": 30,
32
32
  "maxP99FrameTimeMs": 40,
33
33
  "maxStutterBurstCount": 10
34
+ },
35
+ "tilemap_particles_stress": {
36
+ "maxAvgFrameTimeMs": 24,
37
+ "maxJitterMs": 10,
38
+ "minFps": 24,
39
+ "maxP50FrameTimeMs": 24,
40
+ "maxP95FrameTimeMs": 36,
41
+ "maxP99FrameTimeMs": 48,
42
+ "maxStutterBurstCount": 12
34
43
  }
35
44
  },
36
45
  "coldStart": {
@@ -61,6 +70,15 @@
61
70
  "maxP95FrameTimeMs": 40,
62
71
  "maxP99FrameTimeMs": 50,
63
72
  "maxStutterBurstCount": 2
73
+ },
74
+ "tilemap_particles_stress": {
75
+ "maxAvgFrameTimeMs": 32,
76
+ "maxJitterMs": 12,
77
+ "minFps": 20,
78
+ "maxP50FrameTimeMs": 32,
79
+ "maxP95FrameTimeMs": 44,
80
+ "maxP99FrameTimeMs": 56,
81
+ "maxStutterBurstCount": 3
64
82
  }
65
83
  }
66
84
  },
@@ -92,6 +110,15 @@
92
110
  "maxP95FrameTimeMs": 28,
93
111
  "maxP99FrameTimeMs": 36,
94
112
  "maxStutterBurstCount": 8
113
+ },
114
+ "tilemap_particles_stress": {
115
+ "maxAvgFrameTimeMs": 22,
116
+ "maxJitterMs": 8,
117
+ "minFps": 28,
118
+ "maxP50FrameTimeMs": 22,
119
+ "maxP95FrameTimeMs": 32,
120
+ "maxP99FrameTimeMs": 40,
121
+ "maxStutterBurstCount": 10
95
122
  }
96
123
  }
97
124
  },
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@auraindustry/aurajs",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "Write games in JavaScript, build native binaries.",
5
5
  "type": "module",
6
6
  "exports": {
7
+ "./cutscene": "./src/cutscene.mjs",
7
8
  "./react": "./src/react/index.mjs",
8
9
  "./web": "./src/web-api.mjs",
9
10
  "./package.json": "./package.json"