@xviewer.js/postprocessing 1.0.0-alpha.1 → 1.0.0-alpha.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xviewer.js/postprocessing",
3
- "version": "1.0.0-alpha.1",
3
+ "version": "1.0.0-alpha.5",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"
@@ -17,10 +17,10 @@
17
17
  "dist/**/*",
18
18
  "types/**/*"
19
19
  ],
20
- "peerDependencies": {
21
- "postprocessing": ">= 6.35.4"
22
- },
23
20
  "dependencies": {
24
- "@xviewer.js/core": "1.0.0-alpha.1"
25
- }
21
+ "@xviewer.js/core": "1.0.0-alpha.5"
22
+ },
23
+ "peerDependencies": {
24
+ "postprocessing": ">= 6.35.4"
25
+ }
26
26
  }
@@ -1,4 +1,4 @@
1
- import { Plugin, Viewer } from "@xviewer/core";
1
+ import { Plugin, Viewer } from "@xviewer.js/core";
2
2
  import { EffectComposer, Pass } from "postprocessing";
3
3
  export declare class EffectComposerPlugin extends Plugin {
4
4
  static Instance(viewer: Viewer): EffectComposerPlugin;
@@ -1,4 +1,4 @@
1
- import { Plugin } from "@xviewer/core";
1
+ import { Plugin } from "@xviewer.js/core";
2
2
  import { EffectComposerPlugin } from "./EffectComposerPlugin";
3
3
  export declare class MSAAPlugin extends Plugin {
4
4
  get enable(): boolean;
@@ -1,4 +1,4 @@
1
- import { Plugin } from "@xviewer/core";
1
+ import { Plugin } from "@xviewer.js/core";
2
2
  import { Pass } from "postprocessing";
3
3
  import { EffectComposerPlugin } from "./EffectComposerPlugin";
4
4
  export declare class PassPlugin<T extends Pass> extends Plugin {
@@ -1,5 +0,0 @@
1
- import { PassPlugin } from "./PassPlugin";
2
- import { TAAPass } from "./realism-effects";
3
- export declare class TAAPlugin extends PassPlugin<TAAPass> {
4
- constructor();
5
- }
@@ -1,3 +0,0 @@
1
- /// <reference types="postprocessing" />
2
- import { Viewer } from "@xviewer/core";
3
- export declare function getVelocityDepthNormalPass(viewer: Viewer): import("postprocessing").Pass;