openvideo 0.2.1 → 0.2.3
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/{browserAll-fg4kMsDE.js → browserAll-fYnMYU5U.js} +2 -2
- package/dist/effect/constant/index.d.ts +3 -10
- package/dist/effect/effect.d.ts +1 -1
- package/dist/effect/types.d.ts +1 -0
- package/dist/{index-DX5d9IHl.js → index-CZJxf7wC.js} +6722 -6711
- package/dist/index.es.js +1 -1
- package/dist/index.umd.js +251 -251
- package/dist/json-serialization.d.ts +20 -20
- package/dist/studio.d.ts +1 -1
- package/dist/{webworkerAll-VNDkFiQ2.js → webworkerAll-B5b1f-BT.js} +1 -1
- package/package.json +1 -1
- package/dist/texture1.png +0 -0
- package/dist/texture2.png +0 -0
|
@@ -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-CZJxf7wC.js";
|
|
2
|
+
import "./webworkerAll-B5b1f-BT.js";
|
|
3
3
|
a.add(e);
|
|
4
4
|
a.mixin(i, s);
|
|
5
5
|
a.add(t);
|
|
@@ -591,16 +591,9 @@ export declare const VALUES_FILTER_SPECIAL_LIMITS: {
|
|
|
591
591
|
};
|
|
592
592
|
pixelateFilter: {
|
|
593
593
|
size: {
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
step: number;
|
|
598
|
-
};
|
|
599
|
-
y: {
|
|
600
|
-
min: number;
|
|
601
|
-
max: number;
|
|
602
|
-
step: number;
|
|
603
|
-
};
|
|
594
|
+
min: number;
|
|
595
|
+
max: number;
|
|
596
|
+
step: number;
|
|
604
597
|
};
|
|
605
598
|
};
|
|
606
599
|
radialBlurFilter: {
|
package/dist/effect/effect.d.ts
CHANGED
|
@@ -5,5 +5,5 @@ export declare function makeEffect({ name, renderer, values }: EffectOptions): P
|
|
|
5
5
|
render({ canvasTexture }: EffectRendererOptions): Texture<import('pixi.js').TextureSource<any>>;
|
|
6
6
|
} | {
|
|
7
7
|
filter: any;
|
|
8
|
-
render({ width, height, canvasTexture, progress }: EffectRendererOptions): RenderTexture;
|
|
8
|
+
render({ width, height, canvasTexture, progress, values: runtimeValues, }: EffectRendererOptions): RenderTexture;
|
|
9
9
|
}>;
|