route-graphics 1.36.0 → 1.38.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 +3 -0
- package/bin/route-graphics.js +1 -1
- package/dist/RouteGraphics.js +353 -168
- package/dist/cli/routeGraphicsCli.js +7348 -0
- package/package.json +3 -1
- package/src/cli/inspectTimeline.js +72 -0
- package/src/cli/inspectTimeline.test.js +135 -0
- package/src/cli/routeGraphicsCli.js +49 -1
package/README.md
CHANGED
|
@@ -144,6 +144,9 @@ Design notes:
|
|
|
144
144
|
- [Audio Effects](./docs/audio-effects.md)
|
|
145
145
|
- [Command-Controlled Sound Playback](./docs/audio-playback-commands.md)
|
|
146
146
|
- [Animation Model](./docs/animation-model.md)
|
|
147
|
+
- [Portable GSAP-Style Timelines](./docs/portable-gsap-timelines.md)
|
|
148
|
+
- [Shared Timeline Design and Roadmap](./docs/shared-timeline-plan-design-and-roadmap.md)
|
|
149
|
+
- [Shared Timeline Implementation Review](./docs/shared-timeline-implementation-review.md)
|
|
147
150
|
- [Shader Interface](./docs/shader-interface.md)
|
|
148
151
|
|
|
149
152
|
## Render CLI
|
package/bin/route-graphics.js
CHANGED