@glowjs/core 2025.7.18 → 2025.7.24
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/glow.core.d.ts +45 -3
- package/dist/glow.core.js +1 -1
- package/dist/typings/core/App.d.ts +4 -0
- package/dist/typings/effect/EffectMgr.d.ts +2 -3
- package/dist/typings/entity/path/createPointInstance.d.ts +2 -1
- package/dist/typings/gui/PerformancePanel.d.ts +2 -0
- package/dist/typings/misc/runAsyncTasks.d.ts +5 -0
- package/dist/typings/res/ResPool.d.ts +1 -0
- package/dist/typings/res/registerBufferAndSetEffect.d.ts +7 -0
- package/package.json +1 -1
- package/dist/typings/res/registerBuffer.d.ts +0 -6
|
@@ -2,6 +2,7 @@ import { Base } from '../base/Base';
|
|
|
2
2
|
import { App } from '../core/App';
|
|
3
3
|
import { EnvironmentTexture } from './EnvironmentTexture';
|
|
4
4
|
import { Fog } from './Fog';
|
|
5
|
+
import { Glow } from './Glow';
|
|
5
6
|
import { ImageProcessing } from './ImageProcessing';
|
|
6
7
|
import { Light } from './Light';
|
|
7
8
|
import { ColorCorrection } from './ColorCorrection';
|
|
@@ -27,13 +28,11 @@ export declare class EffectMgr extends Base {
|
|
|
27
28
|
/**
|
|
28
29
|
* 发光层
|
|
29
30
|
*/
|
|
31
|
+
glow: Glow;
|
|
30
32
|
/**
|
|
31
33
|
* 灯光
|
|
32
34
|
*/
|
|
33
35
|
light: Light;
|
|
34
|
-
/**
|
|
35
|
-
* 高亮层
|
|
36
|
-
*/
|
|
37
36
|
/**
|
|
38
37
|
* 图像处理
|
|
39
38
|
*/
|
|
@@ -25,6 +25,8 @@ export declare class PerformancePanel extends StackPanel {
|
|
|
25
25
|
private _heapTotal;
|
|
26
26
|
private _heapLimit;
|
|
27
27
|
private _deltaTimeValue;
|
|
28
|
+
private _activeFaces;
|
|
29
|
+
private _totalVertices;
|
|
28
30
|
private _sceneInstrumentation;
|
|
29
31
|
private _engineInstrumentation;
|
|
30
32
|
app: App;
|
package/package.json
CHANGED