@genex-ai/cli-demo 0.37.0 → 0.39.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/README.md +22 -0
- package/dist/index.js +469 -28
- package/package.json +4 -1
- package/templates/controllers/NOTICE.md +8 -5
- package/templates/controllers/assets/animation-library.glb +0 -0
- package/templates/controllers/assets/anims-manifest.json +1306 -0
- package/templates/controllers/character/animation-packs.ts +70 -0
- package/templates/controllers/character/character-animations.ts +51 -8
- package/templates/controllers/character/character-controller.ts +153 -5
- package/templates/controllers/character/keyboard-input.ts +12 -1
- package/templates/controllers/character/presets.ts +19 -1
- package/templates/controllers/character/vrm/foot-ik.ts +71 -15
- package/templates/controllers/character/vrm/vrm-retarget.ts +72 -12
- package/templates/skills/genex-threejs-character-controller/SKILL.md +55 -22
- package/templates/skills/genex-threejs-character-controller/references/animations.md +91 -46
- package/templates/skills/genex-threejs-character-controller/references/tuning-and-presets.md +3 -0
- package/templates/skills/genex-threejs-multiplayer/references/host-physics.md +7 -6
- package/templates/skills/genex-threejs-skill-router/SKILL.md +1 -1
- package/templates/skills/genex-threejs-vehicle-controllers/references/enter-exit.md +3 -2
- package/templates/controllers/assets/character.glb +0 -0
|
@@ -33,15 +33,18 @@ Every ported source file carries its own SPDX header
|
|
|
33
33
|
(`SPDX-FileCopyrightText: 2023-2026 Erdong Chen`,
|
|
34
34
|
`SPDX-License-Identifier: MIT`).
|
|
35
35
|
|
|
36
|
-
## Quaternius Universal Animation Library — CC0 1.0 Universal
|
|
36
|
+
## Quaternius Universal Animation Library [Pro] — CC0 1.0 Universal
|
|
37
37
|
|
|
38
|
-
- `assets/animation-library.glb` — the
|
|
39
|
-
**Quaternius** (quaternius.com):
|
|
40
|
-
|
|
38
|
+
- `assets/animation-library.glb` — the bundled 12-clip core, cut from the
|
|
39
|
+
**Universal Animation Library [Pro]** by **Quaternius** (quaternius.com):
|
|
40
|
+
120 humanoid animation clips on a UE-mannequin-style skeleton.
|
|
41
|
+
- `public/assets/anims/*.glb` — additional per-clip cuts from the same
|
|
42
|
+
library, installed on demand by `npx genex controller anims`.
|
|
41
43
|
|
|
42
44
|
Dedicated to the public domain under the Creative Commons CC0 1.0 Universal
|
|
43
45
|
license (SPDX: `CC0-1.0`). No attribution is required by the license; this
|
|
44
|
-
notice is provided as a courtesy
|
|
46
|
+
notice is provided as a courtesy — supporting Quaternius on Patreon is a nice
|
|
47
|
+
way to say thanks.
|
|
45
48
|
|
|
46
49
|
## Default avatar — CC0 1.0 Universal
|
|
47
50
|
|
|
Binary file
|