incanto 0.7.0 → 0.7.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.
package/editor/index.html CHANGED
@@ -5,7 +5,7 @@
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
6
  <title>Incanto Scene Editor</title>
7
7
  <link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><rect width='16' height='16' rx='3' fill='%236ee7dc'/><text x='8' y='12' text-anchor='middle' font-size='11' font-family='monospace' fill='%230e1018'>i</text></svg>" />
8
- <script type="module" crossorigin src="./assets/index-DzYFgZbl.js"></script>
8
+ <script type="module" crossorigin src="./assets/index-CXFNanuR.js"></script>
9
9
  <link rel="modulepreload" crossorigin href="./assets/GameServer-C56iOUgF.js">
10
10
  <link rel="stylesheet" crossorigin href="./assets/index-DF3tMeKJ.css">
11
11
  </head>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "incanto",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "Vibe-coding-first web game engine SDK — JSON-driven scenes on three.js",
5
5
  "keywords": [
6
6
  "game-engine",
@@ -189,3 +189,12 @@ thing gating it: keep it `false` (or dev-gated) in anything you publish.
189
189
  seeded run reproduces exactly.
190
190
  - A run that "does nothing": remember the first engine tick only primes the
191
191
  clock — `runScript` already handles this for you.
192
+
193
+ ## Finding a node ON SCREEN (selection highlight)
194
+
195
+ Selecting a node in the dev overlay's Explorer draws its world-space
196
+ bounding box as an ORANGE outline in the running game (children included;
197
+ depth-test off, so it shows through walls). Extent-less nodes get a small
198
+ marker cube at their position. That is the fastest answer to "which thing
199
+ on screen IS this node?" — and the reverse of it: walk the tree clicking
200
+ rows until the orange box lands on the thing you're hunting.