incanto 0.45.1 → 0.46.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.
- package/dist/2d.d.ts +1 -1
- package/dist/2d.js +1 -1
- package/dist/3d.d.ts +1 -1
- package/dist/3d.js +3 -3
- package/dist/{create-game-Gifrjhnz.js → create-game-BtCNdkjI.js} +3 -3
- package/dist/{create-game-DFRbG0Bj.js → create-game-CniOiWzN.js} +1 -1
- package/dist/{editor-switch-DVwIGZdK.d.ts → editor-switch-DAvWQeld.d.ts} +1 -1
- package/dist/editor.js +4674 -4346
- package/dist/{environment-presets-DUsBqvtk.js → environment-presets-D1b0ydTS.js} +5 -4
- package/dist/index.js +1 -1
- package/dist/{physics-3d-DFqMtBUD.js → physics-3d-CSoGjM8P.js} +1 -1
- package/dist/react.js +1 -1
- package/dist/{src-DUxGnvq3.js → src-B43b6bZo.js} +1 -1
- package/dist/{teardown-yePMOE1K.js → teardown-BKTCzLek.js} +3 -2
- package/dist/{test-DD5scWfm.js → test-BboGNQr-.js} +3 -3
- package/dist/test.js +1 -1
- package/dist/vite.d.ts +21 -1
- package/dist/vite.js +79 -5
- package/editor/assets/{agent8-B25qJ5Wo.js → agent8-Dl5ZZLu-.js} +1 -1
- package/editor/assets/{debug-CUsz-pT8.js → debug-j9Pi6RvO.js} +1 -1
- package/editor/assets/{index-3u3GVteP.js → index-Y-93awAL.js} +172 -95
- package/editor/index.html +1 -1
- package/package.json +1 -1
- package/skills/incanto-editor.md +6 -1
- package/templates-app/beacon-isle-3d/package.json +1 -1
- package/templates-app/tps-3d/package.json +1 -1
- package/templates-app/village-quest-3d/package.json +1 -1
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-
|
|
8
|
+
<script type="module" crossorigin src="./assets/index-Y-93awAL.js"></script>
|
|
9
9
|
<link rel="modulepreload" crossorigin href="./assets/GameServer-C56iOUgF.js">
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
package/package.json
CHANGED
package/skills/incanto-editor.md
CHANGED
|
@@ -253,9 +253,14 @@ so the page cannot call it directly — `incanto-editor` proxies it at
|
|
|
253
253
|
```bash
|
|
254
254
|
bunx incanto-editor --token <v8 access token>
|
|
255
255
|
INCANTO_V8_TOKEN=<token> bunx incanto-editor # same thing
|
|
256
|
+
# either way the panel header shows WHICH token is in use, wallet-style
|
|
257
|
+
# (`v8_abc…wxyz · INCANTO_V8_TOKEN`) — enough to recognise, never enough to use
|
|
256
258
|
```
|
|
257
259
|
|
|
258
|
-
With no token the 📚 panel
|
|
260
|
+
With no token the 📚 panel offers **sign in with Verse8** — the same device flow
|
|
261
|
+
agent8's own local-dev login uses. It opens the Verse8 approval page in a new
|
|
262
|
+
tab, shows you the code to approve, and stores the token it comes back with in
|
|
263
|
+
this browser
|
|
259
264
|
(`localStorage`), which is the right answer for a shared machine — the token is
|
|
260
265
|
sent only to your own editor server, never written to disk by it, and forwarded
|
|
261
266
|
upstream as a bearer. `INCANTO_LIBRARY_URL` points the proxy somewhere else
|