@genex-ai/cli-demo 1.23.0-dev.606 → 1.24.0-dev.607

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@genex-ai/cli-demo",
3
- "version": "1.23.0-dev.606",
3
+ "version": "1.24.0-dev.607",
4
4
  "description": "Set up your project's agent workspace (.claude/.codex/.cursor in the game folder), authorize, create a game project, generate AI assets, and publish (genex CLI).",
5
5
  "type": "module",
6
6
  "bin": {
@@ -110,8 +110,14 @@ function modelBudgetFor(tier: QualityTier): number {
110
110
  * `model-animations-glb` bundle. Animation-only clip GLBs from the character
111
111
  * lane (`character-motion-*-glb`) are deliberately NOT here: the rung
112
112
  * pipeline would prune away the sampler data that IS the clip. */
113
+ // `rigged-character.glb` is the role the GUIDED character lane actually writes —
114
+ // reversed words and a dot extension, unlike every other entry here. Until
115
+ // 2026-09-07 neither this regex nor the server's rung writer knew it, so every
116
+ // generated character was fetched provider-raw (measured: 23.85 MB, and its
117
+ // texture failed to decode into a white body). The dot is safe: the rung URL is
118
+ // built by appending `@<width>`, so it lands as `rigged-character.glb@2048`.
113
119
  const MODEL_ROLE_RE =
114
- /^(model-glb|character-rigged(-a\d+)?-glb(-r\d+)?|model-segmented-glb|model-rigged-glb|model-animations-glb|model-anim-.+-glb)$/;
120
+ /^(model-glb|character-rigged(-a\d+)?-glb(-r\d+)?|rigged-character\.glb|model-segmented-glb|model-rigged-glb|model-animations-glb|model-anim-.+-glb)$/;
115
121
 
116
122
  /** Resolve the model URL a THIS-tier device should load. `ktx2: true` (from
117
123
  * createGltfLoader) upgrades to the GPU-compressed sibling. */