@glissade/scene 0.6.0-pre.1 → 0.6.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.
@@ -864,6 +864,7 @@ var Shape = class extends Node {
864
864
  this.registerTarget("reveal", this.reveal);
865
865
  if (props.sketch) validateSketch(props.sketch);
866
866
  if (props.sketchFill) validateHachure(props.sketchFill);
867
+ if (props.sketchFill && !props.sketch) emitDevWarning(`${this.id !== void 0 ? `'${this.id}': ` : ""}sketchFill is ignored without sketch — hachure fill is drawn only by the sketch renderer. Set a sketch style (e.g. { kind: 'pencil' }) to see it.`);
867
868
  this.sketch = props.sketch;
868
869
  this.sketchFill = props.sketchFill;
869
870
  this.sketchSeed = props.sketchSeed ?? (this.id !== void 0 ? hashStr(this.id) : 0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glissade/scene",
3
- "version": "0.6.0-pre.1",
3
+ "version": "0.6.0",
4
4
  "description": "glissade scene graph: nodes, transforms, DisplayList emission. Renderer-agnostic; zero DOM/Node dependencies.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -20,7 +20,7 @@
20
20
  ],
21
21
  "dependencies": {
22
22
  "yoga-layout": "^3.2.1",
23
- "@glissade/core": "0.6.0-pre.1"
23
+ "@glissade/core": "0.6.0"
24
24
  },
25
25
  "repository": {
26
26
  "type": "git",