hayao 0.4.0 → 0.4.1
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/dist/anim/blend.d.ts +68 -0
- package/dist/anim/clip.d.ts +87 -0
- package/dist/anim/ik.d.ts +40 -0
- package/dist/anim/skeleton.d.ts +64 -0
- package/dist/hayao.global.js +12 -12
- package/dist/index.d.ts +11 -1
- package/dist/index.js +1683 -516
- package/dist/index.js.map +4 -4
- package/dist/index.min.js +12 -12
- package/dist/render/canvas2d-core.d.ts +4 -0
- package/dist/render/commands.d.ts +19 -0
- package/dist/render/lightRun.d.ts +35 -0
- package/dist/render/svgString.d.ts +8 -3
- package/dist/scene/clipPlayer.d.ts +58 -0
- package/dist/scene/ikTarget.d.ts +25 -0
- package/dist/scene/light.d.ts +80 -0
- package/dist/scene/shadow2d.d.ts +25 -0
- package/dist/scene/skeletonDebug.d.ts +28 -0
- package/dist/verify/gates.d.ts +25 -0
- package/docs/API.md +66 -8
- package/docs/CONVENTIONS.md +56 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -16,7 +16,16 @@ export * from './scene/tween';
|
|
|
16
16
|
export * from './scene/particles';
|
|
17
17
|
export * from './scene/floatingText';
|
|
18
18
|
export * from './scene/verletChain';
|
|
19
|
+
export * from './scene/clipPlayer';
|
|
20
|
+
export * from './scene/ikTarget';
|
|
21
|
+
export * from './scene/skeletonDebug';
|
|
22
|
+
export * from './scene/light';
|
|
23
|
+
export * from './scene/shadow2d';
|
|
19
24
|
export * from './scene/registry';
|
|
25
|
+
export * from './anim/clip';
|
|
26
|
+
export * from './anim/blend';
|
|
27
|
+
export * from './anim/ik';
|
|
28
|
+
export * from './anim/skeleton';
|
|
20
29
|
export * from './input/actions';
|
|
21
30
|
export * from './input/source';
|
|
22
31
|
export * from './input/gamepad';
|
|
@@ -32,6 +41,7 @@ export * from './physics/rigidStep';
|
|
|
32
41
|
export * from './physics/rigidQueries';
|
|
33
42
|
export * from './render/commands';
|
|
34
43
|
export * from './render/paint';
|
|
44
|
+
export * from './render/lightRun';
|
|
35
45
|
export * from './render/renderer';
|
|
36
46
|
export * from './render/svgString';
|
|
37
47
|
export * from './render/svg';
|
|
@@ -114,4 +124,4 @@ export * from './studio/record';
|
|
|
114
124
|
export * from './studio/timeline';
|
|
115
125
|
export * from './studio/run';
|
|
116
126
|
/** Engine version. */
|
|
117
|
-
export declare const VERSION = "0.4.
|
|
127
|
+
export declare const VERSION = "0.4.1";
|