@glowjs/core 2025.7.8 → 2025.7.19
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 +22 -18
- package/dist/glow.core.js +1 -1
- package/dist/typings/core/App.d.ts +4 -0
- package/dist/typings/entity/Entity.d.ts +2 -2
- package/dist/typings/entity/POI.d.ts +3 -3
- package/dist/typings/entity/VideoFusion.d.ts +3 -3
- package/dist/typings/entity/component/archive/ArchiveDoor.d.ts +2 -2
- package/dist/typings/entity/poi_plus/POIPlus.d.ts +3 -3
- package/dist/typings/gui/Billboard.d.ts +2 -2
- package/dist/typings/gui/InfoListPanel.d.ts +2 -2
- package/dist/typings/misc/runAsyncTasks.d.ts +5 -0
- package/dist/typings/res/ResPool.d.ts +1 -1
- package/package.json +1 -1
|
@@ -50,7 +50,7 @@ export declare class POI extends Entity {
|
|
|
50
50
|
private _pointerUpObserver;
|
|
51
51
|
private _mesh;
|
|
52
52
|
private _showBoundingBox;
|
|
53
|
-
private
|
|
53
|
+
private _visible;
|
|
54
54
|
private _pivot;
|
|
55
55
|
/**
|
|
56
56
|
* 上一次点击的时间点,用于计算双击事件
|
|
@@ -61,8 +61,8 @@ export declare class POI extends Entity {
|
|
|
61
61
|
* @param app 应用
|
|
62
62
|
*/
|
|
63
63
|
constructor(app: App);
|
|
64
|
-
get
|
|
65
|
-
set
|
|
64
|
+
get visible(): boolean;
|
|
65
|
+
set visible(value: boolean);
|
|
66
66
|
/**
|
|
67
67
|
* 获取或设置轴心点
|
|
68
68
|
*/
|
|
@@ -12,7 +12,7 @@ export declare class VideoFusion extends Entity {
|
|
|
12
12
|
private _opacityTexture;
|
|
13
13
|
private _videoTexture;
|
|
14
14
|
private _smoothing;
|
|
15
|
-
private
|
|
15
|
+
private _visible;
|
|
16
16
|
/**
|
|
17
17
|
* 是否默认隐藏
|
|
18
18
|
*/
|
|
@@ -34,8 +34,8 @@ export declare class VideoFusion extends Entity {
|
|
|
34
34
|
* @param app 应用实例
|
|
35
35
|
*/
|
|
36
36
|
constructor(app: App);
|
|
37
|
-
get
|
|
38
|
-
set
|
|
37
|
+
get visible(): boolean;
|
|
38
|
+
set visible(value: boolean);
|
|
39
39
|
/**
|
|
40
40
|
* 获取是否允许被冻结材质
|
|
41
41
|
*/
|
|
@@ -61,7 +61,7 @@ export declare class POIPlus extends Entity {
|
|
|
61
61
|
private _pointerUpObserver;
|
|
62
62
|
private _mesh;
|
|
63
63
|
private _showBoundingBox;
|
|
64
|
-
private
|
|
64
|
+
private _visible;
|
|
65
65
|
private _pivot;
|
|
66
66
|
/**
|
|
67
67
|
* 上一次点击的时间点,用于计算双击事件
|
|
@@ -72,8 +72,8 @@ export declare class POIPlus extends Entity {
|
|
|
72
72
|
* @param app 应用
|
|
73
73
|
*/
|
|
74
74
|
constructor(app: App);
|
|
75
|
-
get
|
|
76
|
-
set
|
|
75
|
+
get visible(): boolean;
|
|
76
|
+
set visible(value: boolean);
|
|
77
77
|
/**
|
|
78
78
|
* 获取或设置轴心点
|
|
79
79
|
*/
|
|
@@ -59,7 +59,7 @@ export declare class ResPool extends Base {
|
|
|
59
59
|
getRes(id: string, optimized?: boolean, archiveGrid?: boolean): Promise<Texture | InstantiatedEntries | NodeMaterial | any>;
|
|
60
60
|
private _cloneEntires;
|
|
61
61
|
private _loadModel;
|
|
62
|
-
private
|
|
62
|
+
private _getTexture;
|
|
63
63
|
private _loadMaterial;
|
|
64
64
|
private _loadParticle;
|
|
65
65
|
private _getResType;
|