@plasius/gpu-shared 0.1.7 → 0.1.9
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/CHANGELOG.md +37 -0
- package/README.md +6 -0
- package/dist/index.cjs +513 -125
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/{showcase-runtime-AIPDRK7G.js → showcase-runtime-55OVDYWT.js} +513 -125
- package/dist/{showcase-runtime-AIPDRK7G.js.map → showcase-runtime-55OVDYWT.js.map} +1 -1
- package/package.json +1 -1
- package/src/showcase-runtime.js +569 -151
package/CHANGELOG.md
CHANGED
|
@@ -16,6 +16,41 @@ All notable changes to this project will be documented in this file.
|
|
|
16
16
|
- **Security**
|
|
17
17
|
- (placeholder)
|
|
18
18
|
|
|
19
|
+
## [0.1.9] - 2026-05-13
|
|
20
|
+
|
|
21
|
+
- **Added**
|
|
22
|
+
- (placeholder)
|
|
23
|
+
|
|
24
|
+
- **Changed**
|
|
25
|
+
- (placeholder)
|
|
26
|
+
|
|
27
|
+
- **Fixed**
|
|
28
|
+
- (placeholder)
|
|
29
|
+
|
|
30
|
+
- **Security**
|
|
31
|
+
- (placeholder)
|
|
32
|
+
|
|
33
|
+
## [0.1.8] - 2026-05-13
|
|
34
|
+
|
|
35
|
+
- **Added**
|
|
36
|
+
- Deterministic showcase-runtime regression tests for the cloth simulation,
|
|
37
|
+
visible water-motion overlays, and separated reflection light sources.
|
|
38
|
+
|
|
39
|
+
- **Changed**
|
|
40
|
+
- The integrated harbor runtime now advances the flag as a persistent
|
|
41
|
+
constraint-driven cloth state instead of re-creating a stateless sinusoid
|
|
42
|
+
mesh every frame.
|
|
43
|
+
- Water reflections are rendered as a dedicated water-layer pass so later
|
|
44
|
+
ship geometry can occlude them naturally.
|
|
45
|
+
|
|
46
|
+
- **Fixed**
|
|
47
|
+
- Shared GPU Demo water now has visible wake and ripple overlays at demo
|
|
48
|
+
scale, the flag reads as cloth instead of a static ribbon, and lantern
|
|
49
|
+
reflections no longer draw through hull geometry.
|
|
50
|
+
|
|
51
|
+
- **Security**
|
|
52
|
+
- (placeholder)
|
|
53
|
+
|
|
19
54
|
## [0.1.7] - 2026-05-08
|
|
20
55
|
|
|
21
56
|
- **Added**
|
|
@@ -136,3 +171,5 @@ All notable changes to this project will be documented in this file.
|
|
|
136
171
|
[0.1.4]: https://github.com/Plasius-LTD/gpu-shared/releases/tag/v0.1.4
|
|
137
172
|
[0.1.6]: https://github.com/Plasius-LTD/gpu-shared/releases/tag/v0.1.6
|
|
138
173
|
[0.1.7]: https://github.com/Plasius-LTD/gpu-shared/releases/tag/v0.1.7
|
|
174
|
+
[0.1.8]: https://github.com/Plasius-LTD/gpu-shared/releases/tag/v0.1.8
|
|
175
|
+
[0.1.9]: https://github.com/Plasius-LTD/gpu-shared/releases/tag/v0.1.9
|
package/README.md
CHANGED
|
@@ -28,6 +28,8 @@ npm install @plasius/gpu-shared
|
|
|
28
28
|
planning from `@plasius/gpu-physics/browser`.
|
|
29
29
|
- Keeps package demos aligned on the same family-owned scene contract instead of
|
|
30
30
|
carrying duplicated runtime copies.
|
|
31
|
+
- Preserves one shared fix point for cloth motion, visible water continuity, and
|
|
32
|
+
occluded harbor-light reflections across GPU demo consumers.
|
|
31
33
|
|
|
32
34
|
## Usage
|
|
33
35
|
|
|
@@ -86,6 +88,10 @@ Then open `http://localhost:8000/gpu-shared/demo/`.
|
|
|
86
88
|
This package demo mounts the integrated harbor showcase so the shared runtime
|
|
87
89
|
can be validated independently of `gpu-demo-viewer`.
|
|
88
90
|
|
|
91
|
+
The integrated scene now includes a persistent flag cloth state, visible ship
|
|
92
|
+
wakes and collision ripples, and water reflections that are occluded by later
|
|
93
|
+
ship geometry instead of being painted through hulls.
|
|
94
|
+
|
|
89
95
|
## Current Boundary
|
|
90
96
|
|
|
91
97
|
`@plasius/gpu-shared` owns the shared browser/demo orchestration surface. It
|