@tomorrowevening/theatre-studio 1.0.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/LICENSE +661 -0
- package/README.md +48 -0
- package/dist/index.js +102 -0
- package/dist/index.js.map +7 -0
- package/package.json +87 -0
package/README.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# Theatre.js - Studio
|
|
2
|
+
|
|
3
|
+
Theatre.js is an animation library for high-fidelity motion graphics. It is designed to help you express detailed animation, enabling you to create intricate movement, and convey nuance.
|
|
4
|
+
|
|
5
|
+
Theatre.js can be used both programmatically _and_ visually.
|
|
6
|
+
|
|
7
|
+
You can use Theatre.js to:
|
|
8
|
+
|
|
9
|
+
* Animate 3D objects made with THREE.js or other 3D libraries
|
|
10
|
+
|
|
11
|
+

|
|
12
|
+
|
|
13
|
+
<sub>Art by [drei.lu](https://sketchfab.com/models/91964c1ce1a34c3985b6257441efa500)</sub>
|
|
14
|
+
|
|
15
|
+
* Animate HTML/SVG via React or other libraries
|
|
16
|
+
|
|
17
|
+

|
|
18
|
+
|
|
19
|
+
* Design micro-interactions
|
|
20
|
+
|
|
21
|
+

|
|
22
|
+
|
|
23
|
+
* Choreograph generative interactive art
|
|
24
|
+
|
|
25
|
+

|
|
26
|
+
|
|
27
|
+
* Or animate any other JS variable
|
|
28
|
+
|
|
29
|
+

|
|
30
|
+
|
|
31
|
+
## Documentation and Tutorials
|
|
32
|
+
|
|
33
|
+
You can find the documentation and video tutorials [here](https://www.theatrejs.com/docs/latest).
|
|
34
|
+
|
|
35
|
+
## Community
|
|
36
|
+
|
|
37
|
+
Join us on [Discord](https://discord.gg/bm9f8F9Y9N), follow the updates on [twitter](https://twitter.com/AriaMinaei) or write us an [email](mailto:hello@theatrejs.com).
|
|
38
|
+
|
|
39
|
+
## `@theatre/studio`
|
|
40
|
+
|
|
41
|
+
Theatre.js comes in two packages: `@theatre/core` (the library) and `@theatre/studio` (the editor). This package is the editor, which is only used during design/development.
|
|
42
|
+
|
|
43
|
+
## License
|
|
44
|
+
|
|
45
|
+
Your use of Theatre.js is governed under the Apache License Version 2.0:
|
|
46
|
+
|
|
47
|
+
* Theatre's core (`@theatre/core`) is released under the Apache License.
|
|
48
|
+
* The studio (`@theatre/studio`) is released under the AGPL 3.0 License. This is the package that you use to edit your animations, setup your scenes, etc. You only use the studio during design/development. Your project's final bundle only includes `@theatre/core`, so only the Apache License applies.
|