earthsdk3 3.0.6-beta.13 → 3.0.6-beta.14
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.
|
@@ -186,9 +186,14 @@ export declare class ES3DTileset extends ESVisualObject {
|
|
|
186
186
|
private _resetFeatureStyleEvent;
|
|
187
187
|
get resetFeatureStyleEvent(): Event<[]>;
|
|
188
188
|
resetFeatureStyle(): void;
|
|
189
|
+
setMaterialInfoEvent: Event<[{
|
|
190
|
+
[xx: string]: any;
|
|
191
|
+
}]>;
|
|
189
192
|
private _setMaterialEvent;
|
|
190
193
|
get setMaterialEvent(): Event<["default" | ESJMaterialType]>;
|
|
191
|
-
setMaterial(options: ESJMaterialType | 'default'):
|
|
194
|
+
setMaterial(options: ESJMaterialType | 'default'): Promise<{
|
|
195
|
+
[xx: string]: any;
|
|
196
|
+
}>;
|
|
192
197
|
private _clippingPlanesId;
|
|
193
198
|
get clippingPlanesId(): string;
|
|
194
199
|
set clippingPlanesId(value: string);
|
|
@@ -80,9 +80,14 @@ export declare class ESGltfModel extends ESObjectWithLocation {
|
|
|
80
80
|
private _printDebugInfoEvent;
|
|
81
81
|
get printDebugInfoEvent(): Event<[]>;
|
|
82
82
|
printDebugInfo(): void;
|
|
83
|
+
setMaterialInfoEvent: Event<[{
|
|
84
|
+
[xx: string]: any;
|
|
85
|
+
}]>;
|
|
83
86
|
private _setMaterialEvent;
|
|
84
87
|
get setMaterialEvent(): Event<["default" | ESJMaterialType]>;
|
|
85
|
-
setMaterial(options: ESJMaterialType | 'default'):
|
|
88
|
+
setMaterial(options: ESJMaterialType | 'default'): Promise<{
|
|
89
|
+
[xx: string]: any;
|
|
90
|
+
}>;
|
|
86
91
|
/**
|
|
87
92
|
* 仅Cesium引擎生效
|
|
88
93
|
*/
|