@plasius/gpu-shared 0.1.1 → 0.1.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plasius/gpu-shared",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Shared browser-safe demo runtime and asset helpers for the Plasius gpu-* package family.",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -53,12 +53,12 @@
53
53
  "author": "Plasius LTD <development@plasius.co.uk>",
54
54
  "license": "Apache-2.0",
55
55
  "dependencies": {
56
- "@plasius/gpu-cloth": "^0.1.0",
57
- "@plasius/gpu-debug": "^0.1.1",
58
- "@plasius/gpu-fluid": "https://registry.npmjs.org/@plasius/gpu-fluid/-/gpu-fluid-0.1.0.tgz",
59
- "@plasius/gpu-lighting": "^0.1.9",
60
- "@plasius/gpu-performance": "^0.1.2",
61
- "@plasius/gpu-physics": "^0.1.9"
56
+ "@plasius/gpu-cloth": "^0.1.1",
57
+ "@plasius/gpu-debug": "^0.1.2",
58
+ "@plasius/gpu-fluid": "^0.1.1",
59
+ "@plasius/gpu-lighting": "^0.1.10",
60
+ "@plasius/gpu-performance": "^0.1.3",
61
+ "@plasius/gpu-physics": "^0.1.10"
62
62
  },
63
63
  "devDependencies": {
64
64
  "@eslint/js": "^10.0.1",
package/src/index.d.ts CHANGED
@@ -40,6 +40,7 @@ export interface MountGpuShowcaseResult {
40
40
  readonly state: Record<string, unknown>;
41
41
  readonly shipModel: GltfModel;
42
42
  readonly canvas: HTMLCanvasElement;
43
+ destroy(): void;
43
44
  }
44
45
 
45
46
  export const showcaseFocusModes: readonly ShowcaseFocusMode[];