|
@@ -6,17 +6,15 @@ declare module 'babylonjs-inspector' {
|
|
|
export * from "babylonjs-inspector/inspector";
|
|
|
}
|
|
|
|
|
|
-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;
|
|
|
- }
|
|
|
+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/components/propertyChangedEvent' {
|
|
@@ -34,15 +32,13 @@ declare module 'babylonjs-inspector/components/propertyChangedEvent' {
|
|
|
// ../../../../Tools/Gulp/babylonjs
|
|
|
declare module INSPECTOR {
|
|
|
}
|
|
|
-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;
|
|
|
- }
|
|
|
+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 PropertyChangedEvent {
|