create-aura3d 1.0.10 → 1.1.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.
Files changed (53) hide show
  1. package/package.json +1 -1
  2. package/templates/cartoon-channel/README.md +38 -0
  3. package/templates/cartoon-channel/aura.assets.json +1364 -0
  4. package/templates/cartoon-channel/package.json +2 -1
  5. package/templates/cartoon-channel/public/aura-assets/luma.047f5e5f.glb +0 -0
  6. package/templates/cartoon-channel/public/aura-assets/luma.thumb.svg +1 -0
  7. package/templates/cartoon-channel/public/aura-assets/miko.047f5e5f.glb +0 -0
  8. package/templates/cartoon-channel/public/aura-assets/miko.thumb.svg +1 -0
  9. package/templates/cartoon-channel/public/aura-assets/moon-garden-feature-frame.png +0 -0
  10. package/templates/cartoon-channel/src/aura-assets.ts +5 -11
  11. package/templates/cartoon-channel/src/concept-episode-2-5d.css +159 -0
  12. package/templates/cartoon-channel/src/concept-episode-2-5d.ts +155 -0
  13. package/templates/cartoon-channel/src/image-puppet-episode.css +290 -0
  14. package/templates/cartoon-channel/src/image-puppet-episode.ts +139 -0
  15. package/templates/cartoon-channel/src/main.ts +89 -71
  16. package/templates/cartoon-channel/src/puppet-episode-2d.css +526 -0
  17. package/templates/cartoon-channel/src/puppet-episode-2d.ts +189 -0
  18. package/templates/cartoon-channel/src/render-plan.ts +1 -1
  19. package/templates/cartoon-channel/src/sample-episode-visual.css +457 -0
  20. package/templates/cartoon-channel/src/sample-episode-visual.ts +185 -0
  21. package/templates/cartoon-channel/test-results/.last-run.json +4 -0
  22. package/templates/cartoon-channel/tests/concept-2-5d-animation.spec.ts +18 -0
  23. package/templates/cartoon-channel/tests/concept-2-5d.spec.ts +30 -0
  24. package/templates/cartoon-channel/tests/image-puppet-animation.spec.ts +18 -0
  25. package/templates/cartoon-channel/tests/image-puppet.spec.ts +29 -0
  26. package/templates/cartoon-channel/tests/puppet-2d-animation.spec.ts +18 -0
  27. package/templates/cartoon-channel/tests/puppet-2d.spec.ts +26 -0
  28. package/templates/cartoon-channel/tests/reports/prompt-animation/cartoon-sample-episode.png +0 -0
  29. package/templates/cartoon-channel/tests/sample-episode-visual.spec.ts +45 -0
  30. package/templates/cartoon-channel/tests/storyboard-playback.spec.ts +1 -1
  31. package/templates/cartoon-studio/README.md +36 -0
  32. package/templates/cartoon-studio/aura.assets.json +157 -0
  33. package/templates/cartoon-studio/package.json +12 -1
  34. package/templates/cartoon-studio/public/aura-assets/luma.047f5e5f.glb +0 -0
  35. package/templates/cartoon-studio/public/aura-assets/luma.humanoid-fixture.glb +0 -0
  36. package/templates/cartoon-studio/public/aura-assets/luma.thumb.svg +1 -0
  37. package/templates/cartoon-studio/public/aura-assets/miko.047f5e5f.glb +0 -0
  38. package/templates/cartoon-studio/public/aura-assets/miko.thumb.svg +1 -0
  39. package/templates/cartoon-studio/public/aura-assets/moonGarden.gltf +183 -0
  40. package/templates/cartoon-studio/scripts/episode.ts +276 -0
  41. package/templates/cartoon-studio/src/aura-assets.ts +55 -8
  42. package/templates/cartoon-studio/src/characters.ts +38 -1
  43. package/templates/cartoon-studio/src/episode-renderer.ts +605 -0
  44. package/templates/cartoon-studio/src/episode.ts +12 -6
  45. package/templates/cartoon-studio/src/main.ts +109 -41
  46. package/templates/cartoon-studio/src/render-plan.ts +162 -0
  47. package/templates/cartoon-studio/src/review.ts +99 -0
  48. package/templates/cartoon-studio/test-results/.last-run.json +4 -0
  49. package/templates/cartoon-studio/tests/episode-render.spec.ts +44 -0
  50. package/templates/cartoon-studio/tests/motion-quality.spec.ts +45 -0
  51. package/templates/cartoon-studio/tests/storyboard-playback.spec.ts +18 -10
  52. package/templates/cartoon-studio/tests/visual-review.spec.ts +21 -0
  53. package/templates/product-viewer/tests/screenshot.spec.ts +8 -16
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-aura3d",
3
- "version": "1.0.10",
3
+ "version": "1.1.0",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "create-aura3d": "dist/cli.js"
@@ -13,6 +13,16 @@ It uses:
13
13
  - Child-safe, reduced-motion, and high-contrast accessibility proof defaults.
14
14
  - Primitive-mouth and typed-GLB viseme examples.
15
15
  - Phoneme/viseme/dub source proof metadata for stable shot, storyboard, caption, line, and word timing ids.
16
+ - A deterministic sample episode visual layer at `/?sampleTime=24` so reviewers
17
+ can see a clean cartoon frame sourced from the same shot/caption contract.
18
+ - An Aura3D-rendered cartoon scene graph for visual review: moon garden,
19
+ stylized robot characters, props, lights, camera, captions, and typed GLB
20
+ character asset evidence through `src/aura-assets.ts`.
21
+ - A release-facing route that deliberately ignores the rejected
22
+ `concept-2-5d`, `puppet-2d`, and `image-puppet` query views. Those earlier
23
+ experiments remain only as negative evidence: still-image parallax, flat
24
+ cutout motion, and `notTrue3D` proof are not accepted as Aura3D 1.1 cartoon
25
+ animation readiness.
16
26
 
17
27
  Replace primitive characters with typed GLB assets by running:
18
28
 
@@ -35,6 +45,34 @@ model(assets.miko);
35
45
 
36
46
  Do not replace this with a string asset id or a raw loader.
37
47
 
48
+ Run the sample episode visual test:
49
+
50
+ ```bash
51
+ npm test
52
+ ```
53
+
54
+ The visual test captures a review frame at:
55
+
56
+ ```text
57
+ tests/reports/prompt-animation/cartoon-sample-episode.png
58
+ ```
59
+
60
+ Run the failed-puppet negative gate:
61
+
62
+ ```bash
63
+ npm run test:negative-failed-puppets
64
+ ```
65
+
66
+ That gate proves the old `?view=concept-2-5d`, `?view=puppet-2d`, and
67
+ `?view=image-puppet` query strings fall back to the supported sample episode
68
+ route and do not expose release-facing puppet/parallax proof objects.
69
+
70
+ Do not use `tests/reports/prompt-animation/cartoon-image-puppet-animation.webm`
71
+ or the old 2.5D/cutout routes as product evidence. Aura3D's accepted cartoon
72
+ animation proof must come from typed assets or explicitly segmented rigs with
73
+ independent body-region motion, caption timing, visible mouth movement, and
74
+ render/package evidence.
75
+
38
76
  This scaffold intentionally does not claim publish readiness from source alone.
39
77
  Before closing build, route, asset, screenshot, render, or visual-quality gates,
40
78
  archive the matching `npm run build`, `assets validate-cartoon`, browser