@galacean/engine-core 1.6.3 → 1.6.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/dist/main.js +14 -9
- package/dist/main.js.map +1 -1
- package/dist/module.js +14 -9
- package/dist/module.js.map +1 -1
- package/package.json +3 -3
- package/types/Camera.d.ts +1 -0
- package/types/postProcess/PostProcessUberPass.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@galacean/engine-core",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.5",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org"
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"types/**/*"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@galacean/engine-math": "1.6.
|
|
21
|
+
"@galacean/engine-math": "1.6.5"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@galacean/engine-design": "1.6.
|
|
24
|
+
"@galacean/engine-design": "1.6.5"
|
|
25
25
|
},
|
|
26
26
|
"scripts": {
|
|
27
27
|
"b:types": "tsc"
|
package/types/Camera.d.ts
CHANGED
|
@@ -303,6 +303,7 @@ export declare class Camera extends Component {
|
|
|
303
303
|
*/
|
|
304
304
|
_onDisableInScene(): void;
|
|
305
305
|
private _updatePixelViewport;
|
|
306
|
+
private _adjustPixelViewport;
|
|
306
307
|
private _viewMatrixChange;
|
|
307
308
|
private _projectionMatrixChange;
|
|
308
309
|
private _innerViewportToWorldPoint;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Camera } from "../Camera";
|
|
2
2
|
import { Engine } from "../Engine";
|
|
3
3
|
import { RenderTarget, Texture2D } from "../texture";
|
|
4
|
-
import { PostProcessPass } from "./PostProcessPass";
|
|
5
4
|
import { PostProcessManager } from "./PostProcessManager";
|
|
5
|
+
import { PostProcessPass } from "./PostProcessPass";
|
|
6
6
|
export declare class PostProcessUberPass extends PostProcessPass {
|
|
7
7
|
static readonly UBER_SHADER_NAME = "UberPost";
|
|
8
8
|
private _uberMaterial;
|