babylon.inspector.d.ts 707 B

12345678910111213141516171819202122
  1. /*Babylon.js Inspector*/
  2. // Dependencies for this module:
  3. // ../../../../Tools/Gulp/babylonjs
  4. declare module INSPECTOR {
  5. }
  6. declare module INSPECTOR {
  7. export class Inspector {
  8. static OnSelectionChangeObservable: BABYLON.Observable<string>;
  9. static OnPropertyChangedObservable: BABYLON.Observable<PropertyChangedEvent>;
  10. static readonly IsVisible: boolean;
  11. static Show(scene: BABYLON.Scene, userOptions: Partial<BABYLON.IInspectorOptions>): void;
  12. static Hide(): void;
  13. }
  14. }
  15. declare module INSPECTOR {
  16. export class PropertyChangedEvent {
  17. object: any;
  18. property: string;
  19. value: any;
  20. initialValue: any;
  21. }
  22. }