openvideo 0.2.6 → 0.2.8
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/animation/presets.d.ts +14 -0
- package/dist/animation/types.d.ts +9 -0
- package/dist/{browserAll-BYQpWniw.js → browserAll-BRIWzNRE.js} +2 -2
- package/dist/{index-Cp7-0rfD.js → index-DoARYsuw.js} +10245 -9515
- package/dist/index.es.js +1 -1
- package/dist/index.umd.js +329 -329
- package/dist/sprite/base-sprite.d.ts +1 -0
- package/dist/sprite/pixi-sprite-renderer.d.ts +6 -2
- package/dist/{webworkerAll-CwaykpJZ.js → webworkerAll-gb7teQp3.js} +1 -1
- package/package.json +1 -1
|
@@ -8,6 +8,8 @@ export declare const zoomIn: AnimationFactory;
|
|
|
8
8
|
export declare const zoomOut: AnimationFactory;
|
|
9
9
|
export declare const blurIn: AnimationFactory;
|
|
10
10
|
export declare const blurOut: AnimationFactory;
|
|
11
|
+
export declare const motionBlurIn: AnimationFactory;
|
|
12
|
+
export declare const motionBlurOut: AnimationFactory;
|
|
11
13
|
export declare const charFadeIn: AnimationFactory;
|
|
12
14
|
export declare const charSlideUp: AnimationFactory;
|
|
13
15
|
export declare const charTypewriter: AnimationFactory;
|
|
@@ -132,6 +134,18 @@ export declare const scaleMidCaption: AnimationFactory;
|
|
|
132
134
|
export declare const scaleDownCaption: AnimationFactory;
|
|
133
135
|
export declare const upDownCaption: AnimationFactory;
|
|
134
136
|
export declare const upLeftCaption: AnimationFactory;
|
|
137
|
+
export declare const comboZoom1: AnimationFactory;
|
|
138
|
+
export declare const comboZoom2: AnimationFactory;
|
|
139
|
+
export declare const comboPendulum1: AnimationFactory;
|
|
140
|
+
export declare const comboPendulum2: AnimationFactory;
|
|
141
|
+
export declare const comboRightDistort: AnimationFactory;
|
|
142
|
+
export declare const comboLeftDistort: AnimationFactory;
|
|
143
|
+
export declare const comboWobble: AnimationFactory;
|
|
144
|
+
export declare const comboSpinningTop1: AnimationFactory;
|
|
145
|
+
export declare const comboSwayOut: AnimationFactory;
|
|
146
|
+
export declare const comboBounce1: AnimationFactory;
|
|
147
|
+
export declare const comboSwayIn: AnimationFactory;
|
|
148
|
+
export declare const comboSpinningTop2: AnimationFactory;
|
|
135
149
|
/**
|
|
136
150
|
* Get the keyframe template for a preset animation
|
|
137
151
|
* Useful for populating the animation editor UI
|
|
@@ -12,6 +12,7 @@ export interface AnimationProps {
|
|
|
12
12
|
blur?: number;
|
|
13
13
|
brightness?: number;
|
|
14
14
|
mirror?: number;
|
|
15
|
+
motionBlur?: number;
|
|
15
16
|
}
|
|
16
17
|
export interface AnimationOptions {
|
|
17
18
|
duration: number;
|
|
@@ -52,6 +53,7 @@ export interface AnimationTransform {
|
|
|
52
53
|
blur?: number;
|
|
53
54
|
brightness?: number;
|
|
54
55
|
mirror?: number;
|
|
56
|
+
motionBlur?: number;
|
|
55
57
|
}
|
|
56
58
|
export interface KeyframeData {
|
|
57
59
|
[key: string]: Partial<AnimationProps & {
|
|
@@ -143,4 +145,11 @@ export declare const ANIMATABLE_PROPERTIES: {
|
|
|
143
145
|
readonly step: 1;
|
|
144
146
|
readonly default: 0;
|
|
145
147
|
};
|
|
148
|
+
readonly motionBlur: {
|
|
149
|
+
readonly label: "Motion Blur";
|
|
150
|
+
readonly min: 0;
|
|
151
|
+
readonly max: 500;
|
|
152
|
+
readonly step: 1;
|
|
153
|
+
readonly default: 0;
|
|
154
|
+
};
|
|
146
155
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { e as a, A as e, C as i, a as s, E as t, F as n, D as d } from "./index-
|
|
2
|
-
import "./webworkerAll-
|
|
1
|
+
import { e as a, A as e, C as i, a as s, E as t, F as n, D as d } from "./index-DoARYsuw.js";
|
|
2
|
+
import "./webworkerAll-gb7teQp3.js";
|
|
3
3
|
a.add(e);
|
|
4
4
|
a.mixin(i, s);
|
|
5
5
|
a.add(t);
|