|
@@ -6,15 +6,17 @@ declare module 'babylonjs-inspector' {
|
|
|
export * from "babylonjs-inspector/inspector";
|
|
|
}
|
|
|
|
|
|
-import { Scene, Observable, IInspectorOptions } from "babylonjs";
|
|
|
-import { PropertyChangedEvent } from "babylonjs-inspector/components/propertyChangedEvent";
|
|
|
-export declare class Inspector {
|
|
|
- static OnSelectionChangeObservable: Observable<string>;
|
|
|
- static OnPropertyChangedObservable: Observable<PropertyChangedEvent>;
|
|
|
- static readonly IsVisible: boolean;
|
|
|
- static EarlyAttachToLoader(): void;
|
|
|
- static Show(scene: Scene, userOptions: Partial<IInspectorOptions>): void;
|
|
|
- static Hide(): void;
|
|
|
+declare module 'babylonjs-inspector/inspector' {
|
|
|
+ import { Scene, Observable, IInspectorOptions } from "babylonjs";
|
|
|
+ import { PropertyChangedEvent } from "babylonjs-inspector/components/propertyChangedEvent";
|
|
|
+ export class Inspector {
|
|
|
+ static OnSelectionChangeObservable: Observable<string>;
|
|
|
+ static OnPropertyChangedObservable: Observable<PropertyChangedEvent>;
|
|
|
+ static readonly IsVisible: boolean;
|
|
|
+ static EarlyAttachToLoader(): void;
|
|
|
+ static Show(scene: Scene, userOptions: Partial<IInspectorOptions>): void;
|
|
|
+ static Hide(): void;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
declare module 'babylonjs-inspector/components/propertyChangedEvent' {
|
|
@@ -32,13 +34,15 @@ declare module 'babylonjs-inspector/components/propertyChangedEvent' {
|
|
|
// ../../../../Tools/Gulp/babylonjs
|
|
|
declare module INSPECTOR {
|
|
|
}
|
|
|
-export declare class Inspector {
|
|
|
- static OnSelectionChangeObservable: BABYLON.Observable<string>;
|
|
|
- static OnPropertyChangedObservable: BABYLON.Observable<PropertyChangedEvent>;
|
|
|
- static readonly IsVisible: boolean;
|
|
|
- static EarlyAttachToLoader(): void;
|
|
|
- static Show(scene: BABYLON.Scene, userOptions: Partial<BABYLON.IInspectorOptions>): void;
|
|
|
- static Hide(): void;
|
|
|
+declare module INSPECTOR {
|
|
|
+ export class Inspector {
|
|
|
+ static OnSelectionChangeObservable: BABYLON.Observable<string>;
|
|
|
+ static OnPropertyChangedObservable: BABYLON.Observable<PropertyChangedEvent>;
|
|
|
+ static readonly IsVisible: boolean;
|
|
|
+ static EarlyAttachToLoader(): void;
|
|
|
+ static Show(scene: BABYLON.Scene, userOptions: Partial<BABYLON.IInspectorOptions>): void;
|
|
|
+ static Hide(): void;
|
|
|
+ }
|
|
|
}
|
|
|
declare module INSPECTOR {
|
|
|
export class PropertyChangedEvent {
|