@glissade/core 0.24.0 → 0.25.0-pre.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/dist/track.d.ts +5 -2
  2. package/package.json +1 -1
package/dist/track.d.ts CHANGED
@@ -236,8 +236,11 @@ interface ColorStop {
236
236
  */
237
237
  type GradientInterpolation = 'linear' | 'smooth' | 'gaussian';
238
238
  /** One mesh-gradient color point: `pos` in normalized [0,1]² fill space, `color`
239
- * a CSS string. Both are ANIMATABLE (e.g. `track('node/fill.points.0.color', …)`
240
- * drives aurora drift on one node). */
239
+ * a CSS string. To ANIMATE a mesh (aurora drift), drive the WHOLE `fill` as a
240
+ * `paint` track `track('node/fill', 'paint', [key(0, meshA), key(1, meshB)])` —
241
+ * and two same-point-count meshes interpolate their points PAIRWISE (pos + color).
242
+ * There are **no per-point sub-path targets**: `fill.points.<i>.pos`/`.color` do
243
+ * NOT resolve (`fill` is one signal, not a nested tree), so animate the whole mesh. */
241
244
  interface MeshPoint {
242
245
  pos: [number, number];
243
246
  color: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glissade/core",
3
- "version": "0.24.0",
3
+ "version": "0.25.0-pre.1",
4
4
  "description": "glissade core: signals, tracks, timeline document, evaluation, easing, springs, seeded RNG. Zero DOM/Node dependencies.",
5
5
  "license": "Apache-2.0",
6
6
  "engines": {