@babylonjs/inspector 5.0.0-alpha.61 → 5.0.0-alpha.62

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.
@@ -536,11 +536,11 @@ declare module "@babylonjs/inspector/components/graph/canvasGraphService" {
536
536
  }
537
537
  }
538
538
  declare module "@babylonjs/inspector/components/graph/canvasGraphComponent" {
539
- import { PerformanceViewerCollector } from '@babylonjs/core/Misc/PerformanceViewer/performanceViewerCollector';
540
- import { Observable } from '@babylonjs/core/Misc/observable';
541
- import * as React from 'react';
539
+ import { PerformanceViewerCollector } from "@babylonjs/core/Misc/PerformanceViewer/performanceViewerCollector";
540
+ import { Observable } from "@babylonjs/core/Misc/observable";
541
+ import * as React from "react";
542
542
  import { IPerfLayoutSize } from "@babylonjs/inspector/components/graph/graphSupportingTypes";
543
- import { Scene } from '@babylonjs/core/scene';
543
+ import { Scene } from "@babylonjs/core/scene";
544
544
  interface ICanvasGraphComponentProps {
545
545
  id: string;
546
546
  scene: Scene;
@@ -657,7 +657,7 @@ declare module "@babylonjs/inspector/sharedUiComponents/colorPicker/colorPicker"
657
657
  }
658
658
  declare module "@babylonjs/inspector/sharedUiComponents/lines/colorPickerComponent" {
659
659
  import * as React from "react";
660
- import { Color4, Color3 } from '@babylonjs/core/Maths/math.color';
660
+ import { Color4, Color3 } from "@babylonjs/core/Maths/math.color";
661
661
  export interface IColorPickerComponentProps {
662
662
  value: Color4 | Color3;
663
663
  linearHint?: boolean;
@@ -683,15 +683,15 @@ declare module "@babylonjs/inspector/sharedUiComponents/lines/colorPickerCompone
683
683
  }
684
684
  }
685
685
  declare module "@babylonjs/inspector/components/actionTabs/tabs/performanceViewer/performanceViewerSidebarComponent" {
686
- import { PerformanceViewerCollector } from '@babylonjs/core/Misc/PerformanceViewer/performanceViewerCollector';
686
+ import { PerformanceViewerCollector } from "@babylonjs/core/Misc/PerformanceViewer/performanceViewerCollector";
687
687
  interface IPerformanceViewerSidebarComponentProps {
688
688
  collector: PerformanceViewerCollector;
689
689
  }
690
690
  export const PerformanceViewerSidebarComponent: (props: IPerformanceViewerSidebarComponentProps) => JSX.Element;
691
691
  }
692
692
  declare module "@babylonjs/inspector/components/actionTabs/tabs/performanceViewer/performancePlayheadButtonComponent" {
693
- import { Observable } from '@babylonjs/core/Misc/observable';
694
- import * as React from 'react';
693
+ import { Observable } from "@babylonjs/core/Misc/observable";
694
+ import * as React from "react";
695
695
  interface IPerformancePlayheadButtonProps {
696
696
  returnToPlayhead: Observable<void>;
697
697
  }
@@ -700,7 +700,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/performanceViewe
700
700
  declare module "@babylonjs/inspector/components/actionTabs/tabs/performanceViewer/performanceViewerComponent" {
701
701
  import { Scene } from "@babylonjs/core/scene";
702
702
  import * as React from "react";
703
- import '@babylonjs/core/Misc/PerformanceViewer/performanceViewerSceneExtension';
703
+ import "@babylonjs/core/Misc/PerformanceViewer/performanceViewerSceneExtension";
704
704
  interface IPerformanceViewerComponentProps {
705
705
  scene: Scene;
706
706
  }
@@ -971,7 +971,7 @@ declare module "@babylonjs/inspector/sharedUiComponents/lines/color3LineComponen
971
971
  import * as React from "react";
972
972
  import { Observable } from "@babylonjs/core/Misc/observable";
973
973
  import { PropertyChangedEvent } from "@babylonjs/inspector/sharedUiComponents/propertyChangedEvent";
974
- import { Color3, Color4 } from '@babylonjs/core/Maths/math.color';
974
+ import { Color3, Color4 } from "@babylonjs/core/Maths/math.color";
975
975
  import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
976
976
  export interface IColor3LineComponentProps {
977
977
  label: string;
@@ -1095,7 +1095,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/cu
1095
1095
  import { Observable } from "@babylonjs/core/Misc/observable";
1096
1096
  import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
1097
1097
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
1098
- import { IInspectable } from '@babylonjs/core/Misc/iInspectable';
1098
+ import { IInspectable } from "@babylonjs/core/Misc/iInspectable";
1099
1099
  import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
1100
1100
  interface ICustomPropertyGridComponentProps {
1101
1101
  globalState: GlobalState;
@@ -1277,7 +1277,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/an
1277
1277
  onValueSet: Observable<number>;
1278
1278
  onValueManuallyEntered: Observable<number>;
1279
1279
  onFrameRequired: Observable<void>;
1280
- onNewKeyPointRequired: Observable<void>;
1280
+ onCreateOrUpdateKeyPointRequired: Observable<void>;
1281
1281
  onFlattenTangentRequired: Observable<void>;
1282
1282
  onLinearTangentRequired: Observable<void>;
1283
1283
  onBreakTangentRequired: Observable<void>;
@@ -1318,6 +1318,15 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/an
1318
1318
  getAnimationSortIndex(animation: Animation): number;
1319
1319
  getPrevKey(): Nullable<number>;
1320
1320
  getNextKey(): Nullable<number>;
1321
+ /**
1322
+ * If any current active animation has a key at the received frameNumber,
1323
+ * return the index of the animation in the active animation array, and
1324
+ * the index of the frame on the animation.
1325
+ */
1326
+ getKeyAtAnyFrameIndex(frameNumber: number): {
1327
+ animationIndex: number;
1328
+ keyIndex: number;
1329
+ } | null;
1321
1330
  }
1322
1331
  }
1323
1332
  declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/animations/curveEditor/controls/textInputComponent" {
@@ -1447,7 +1456,6 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/an
1447
1456
  private _onClipLengthDecreasedObserver;
1448
1457
  constructor(props: IBottomBarComponentProps);
1449
1458
  private _changeClipLength;
1450
- private _getKeyAtFrame;
1451
1459
  componentWillUnmount(): void;
1452
1460
  render(): JSX.Element;
1453
1461
  }
@@ -2117,9 +2125,9 @@ declare module "@babylonjs/inspector/components/actionTabs/lines/textureLineComp
2117
2125
  }
2118
2126
  }
2119
2127
  declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/materials/textures/toolBar" {
2120
- import * as React from 'react';
2128
+ import * as React from "react";
2121
2129
  import { IToolData, IToolType, IMetadata } from "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/materials/textures/textureEditorComponent";
2122
- import { Color4 } from '@babylonjs/core/Maths/math.color';
2130
+ import { Color4 } from "@babylonjs/core/Maths/math.color";
2123
2131
  export interface ITool extends IToolData {
2124
2132
  instance: IToolType;
2125
2133
  }
@@ -2147,12 +2155,12 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/ma
2147
2155
  }
2148
2156
  }
2149
2157
  declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/materials/textures/channelsBar" {
2150
- import * as React from 'react';
2158
+ import * as React from "react";
2151
2159
  export interface IChannel {
2152
2160
  visible: boolean;
2153
2161
  editable: boolean;
2154
2162
  name: string;
2155
- id: 'R' | 'G' | 'B' | 'A';
2163
+ id: "R" | "G" | "B" | "A";
2156
2164
  icon: any;
2157
2165
  }
2158
2166
  interface IChannelsBarProps {
@@ -2289,10 +2297,10 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/ma
2289
2297
  }
2290
2298
  }
2291
2299
  declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/materials/textures/propertiesBar" {
2292
- import * as React from 'react';
2293
- import { BaseTexture } from '@babylonjs/core/Materials/Textures/baseTexture';
2300
+ import * as React from "react";
2301
+ import { BaseTexture } from "@babylonjs/core/Materials/Textures/baseTexture";
2294
2302
  import { IPixelData } from "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/materials/textures/textureCanvasManager";
2295
- import { ISize } from '@babylonjs/core/Maths/math.size';
2303
+ import { ISize } from "@babylonjs/core/Maths/math.size";
2296
2304
  interface IPropertiesBarProps {
2297
2305
  texture: BaseTexture;
2298
2306
  size: ISize;
@@ -2327,8 +2335,8 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/ma
2327
2335
  }
2328
2336
  }
2329
2337
  declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/materials/textures/bottomBar" {
2330
- import * as React from 'react';
2331
- import { BaseTexture } from '@babylonjs/core/Materials/Textures/baseTexture';
2338
+ import * as React from "react";
2339
+ import { BaseTexture } from "@babylonjs/core/Materials/Textures/baseTexture";
2332
2340
  interface IBottomBarProps {
2333
2341
  texture: BaseTexture;
2334
2342
  mipLevel: number;
@@ -2338,8 +2346,8 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/ma
2338
2346
  }
2339
2347
  }
2340
2348
  declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/materials/textures/textureCanvasComponent" {
2341
- import * as React from 'react';
2342
- import { BaseTexture } from '@babylonjs/core/Materials/Textures/baseTexture';
2349
+ import * as React from "react";
2350
+ import { BaseTexture } from "@babylonjs/core/Materials/Textures/baseTexture";
2343
2351
  interface ITextureCanvasComponentProps {
2344
2352
  canvasUI: React.RefObject<HTMLCanvasElement>;
2345
2353
  canvas2D: React.RefObject<HTMLCanvasElement>;
@@ -2371,7 +2379,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/ma
2371
2379
  export default _default;
2372
2380
  }
2373
2381
  declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/materials/textures/toolSettings" {
2374
- import * as React from 'react';
2382
+ import * as React from "react";
2375
2383
  import { ITool } from "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/materials/textures/toolBar";
2376
2384
  interface IToolSettingsProps {
2377
2385
  tool: ITool | undefined;
@@ -2381,15 +2389,15 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/ma
2381
2389
  }
2382
2390
  }
2383
2391
  declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/materials/textures/textureEditorComponent" {
2384
- import * as React from 'react';
2392
+ import * as React from "react";
2385
2393
  import { IPixelData } from "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/materials/textures/textureCanvasManager";
2386
2394
  import { ITool } from "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/materials/textures/toolBar";
2387
2395
  import { IChannel } from "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/materials/textures/channelsBar";
2388
- import { BaseTexture } from '@babylonjs/core/Materials/Textures/baseTexture';
2389
- import { Scene } from '@babylonjs/core/scene';
2390
- import { ISize } from '@babylonjs/core/Maths/math.size';
2391
- import { Vector2 } from '@babylonjs/core/Maths/math.vector';
2392
- import { PointerInfo } from '@babylonjs/core/Events/pointerEvents';
2396
+ import { BaseTexture } from "@babylonjs/core/Materials/Textures/baseTexture";
2397
+ import { Scene } from "@babylonjs/core/scene";
2398
+ import { ISize } from "@babylonjs/core/Maths/math.size";
2399
+ import { Vector2 } from "@babylonjs/core/Maths/math.vector";
2400
+ import { PointerInfo } from "@babylonjs/core/Events/pointerEvents";
2393
2401
  import { PopupComponent } from "@babylonjs/inspector/components/popupComponent";
2394
2402
  interface ITextureEditorComponentProps {
2395
2403
  texture: BaseTexture;
@@ -3294,7 +3302,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/po
3294
3302
  import { Observable } from "@babylonjs/core/Misc/observable";
3295
3303
  import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
3296
3304
  import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
3297
- import { PostProcess } from '@babylonjs/core/PostProcesses/postProcess';
3305
+ import { PostProcess } from "@babylonjs/core/PostProcesses/postProcess";
3298
3306
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
3299
3307
  interface ICommonPostProcessPropertyGridComponentProps {
3300
3308
  globalState: GlobalState;
@@ -3331,7 +3339,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/po
3331
3339
  import { Observable } from "@babylonjs/core/Misc/observable";
3332
3340
  import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
3333
3341
  import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
3334
- import { PostProcessRenderPipeline } from '@babylonjs/core/PostProcesses/RenderPipeline/postProcessRenderPipeline';
3342
+ import { PostProcessRenderPipeline } from "@babylonjs/core/PostProcesses/RenderPipeline/postProcessRenderPipeline";
3335
3343
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
3336
3344
  interface ICommonRenderingPipelinePropertyGridComponentProps {
3337
3345
  globalState: GlobalState;
@@ -3385,7 +3393,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/po
3385
3393
  import { Observable } from "@babylonjs/core/Misc/observable";
3386
3394
  import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
3387
3395
  import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
3388
- import { SSAORenderingPipeline } from '@babylonjs/core/PostProcesses/RenderPipeline/Pipelines/ssaoRenderingPipeline';
3396
+ import { SSAORenderingPipeline } from "@babylonjs/core/PostProcesses/RenderPipeline/Pipelines/ssaoRenderingPipeline";
3389
3397
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
3390
3398
  interface ISSAORenderingPipelinePropertyGridComponentProps {
3391
3399
  globalState: GlobalState;
@@ -3403,7 +3411,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/po
3403
3411
  import { Observable } from "@babylonjs/core/Misc/observable";
3404
3412
  import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
3405
3413
  import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
3406
- import { SSAO2RenderingPipeline } from '@babylonjs/core/PostProcesses/RenderPipeline/Pipelines/ssao2RenderingPipeline';
3414
+ import { SSAO2RenderingPipeline } from "@babylonjs/core/PostProcesses/RenderPipeline/Pipelines/ssao2RenderingPipeline";
3407
3415
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
3408
3416
  interface ISSAO2RenderingPipelinePropertyGridComponentProps {
3409
3417
  globalState: GlobalState;
@@ -3422,7 +3430,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/me
3422
3430
  import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
3423
3431
  import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
3424
3432
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
3425
- import { Skeleton } from '@babylonjs/core/Bones/skeleton';
3433
+ import { Skeleton } from "@babylonjs/core/Bones/skeleton";
3426
3434
  interface ISkeletonPropertyGridComponentProps {
3427
3435
  globalState: GlobalState;
3428
3436
  skeleton: Skeleton;
@@ -3449,7 +3457,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/me
3449
3457
  import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
3450
3458
  import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
3451
3459
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
3452
- import { Bone } from '@babylonjs/core/Bones/bone';
3460
+ import { Bone } from "@babylonjs/core/Bones/bone";
3453
3461
  interface IBonePropertyGridComponentProps {
3454
3462
  globalState: GlobalState;
3455
3463
  bone: Bone;
@@ -3558,9 +3566,9 @@ declare module "@babylonjs/inspector/sharedUiComponents/lines/vector4LineCompone
3558
3566
  }
3559
3567
  }
3560
3568
  declare module "@babylonjs/inspector/components/actionTabs/tabs/gradientStepComponent" {
3561
- import * as React from 'react';
3569
+ import * as React from "react";
3562
3570
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
3563
- import { GradientBlockColorStep } from '@babylonjs/core/Materials/Node/Blocks/gradientBlock';
3571
+ import { GradientBlockColorStep } from "@babylonjs/core/Materials/Node/Blocks/gradientBlock";
3564
3572
  interface IGradientStepComponentProps {
3565
3573
  globalState: GlobalState;
3566
3574
  step: GradientBlockColorStep;
@@ -3590,7 +3598,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyComponen
3590
3598
  }
3591
3599
  declare module "@babylonjs/inspector/components/actionTabs/tabs/gradientNodePropertyComponent" {
3592
3600
  import * as React from "react";
3593
- import { GradientBlockColorStep } from '@babylonjs/core/Materials/Node/Blocks/gradientBlock';
3601
+ import { GradientBlockColorStep } from "@babylonjs/core/Materials/Node/Blocks/gradientBlock";
3594
3602
  import { IPropertyComponentProps } from "@babylonjs/inspector/components/actionTabs/tabs/propertyComponentProps";
3595
3603
  export class GradientPropertyTabComponent extends React.Component<IPropertyComponentProps> {
3596
3604
  private _gradientBlock;
@@ -3646,7 +3654,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/ma
3646
3654
  import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
3647
3655
  import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
3648
3656
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
3649
- import { InputBlock } from '@babylonjs/core/Materials/Node/Blocks/Input/inputBlock';
3657
+ import { InputBlock } from "@babylonjs/core/Materials/Node/Blocks/Input/inputBlock";
3650
3658
  interface INodeMaterialPropertyGridComponentProps {
3651
3659
  globalState: GlobalState;
3652
3660
  material: NodeMaterial;
@@ -3670,8 +3678,8 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/ma
3670
3678
  import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
3671
3679
  import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
3672
3680
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
3673
- import { Material } from '@babylonjs/core/Materials/material';
3674
- import { MultiMaterial } from '@babylonjs/core/Materials/multiMaterial';
3681
+ import { Material } from "@babylonjs/core/Materials/material";
3682
+ import { MultiMaterial } from "@babylonjs/core/Materials/multiMaterial";
3675
3683
  interface IMultiMaterialPropertyGridComponentProps {
3676
3684
  globalState: GlobalState;
3677
3685
  material: MultiMaterial;
@@ -3691,7 +3699,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/pa
3691
3699
  import { Observable } from "@babylonjs/core/Misc/observable";
3692
3700
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
3693
3701
  import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
3694
- import { BoxParticleEmitter } from '@babylonjs/core/Particles/EmitterTypes/boxParticleEmitter';
3702
+ import { BoxParticleEmitter } from "@babylonjs/core/Particles/EmitterTypes/boxParticleEmitter";
3695
3703
  interface IBoxEmitterGridComponentProps {
3696
3704
  globalState: GlobalState;
3697
3705
  emitter: BoxParticleEmitter;
@@ -3707,7 +3715,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/pa
3707
3715
  import { Observable } from "@babylonjs/core/Misc/observable";
3708
3716
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
3709
3717
  import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
3710
- import { ConeParticleEmitter } from '@babylonjs/core/Particles/EmitterTypes/coneParticleEmitter';
3718
+ import { ConeParticleEmitter } from "@babylonjs/core/Particles/EmitterTypes/coneParticleEmitter";
3711
3719
  interface IConeEmitterGridComponentProps {
3712
3720
  globalState: GlobalState;
3713
3721
  emitter: ConeParticleEmitter;
@@ -3724,7 +3732,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/pa
3724
3732
  import { Observable } from "@babylonjs/core/Misc/observable";
3725
3733
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
3726
3734
  import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
3727
- import { CylinderParticleEmitter } from '@babylonjs/core/Particles/EmitterTypes/cylinderParticleEmitter';
3735
+ import { CylinderParticleEmitter } from "@babylonjs/core/Particles/EmitterTypes/cylinderParticleEmitter";
3728
3736
  import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
3729
3737
  interface ICylinderEmitterGridComponentProps {
3730
3738
  globalState: GlobalState;
@@ -3743,7 +3751,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/pa
3743
3751
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
3744
3752
  import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
3745
3753
  import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
3746
- import { HemisphericParticleEmitter } from '@babylonjs/core/Particles/EmitterTypes/hemisphericParticleEmitter';
3754
+ import { HemisphericParticleEmitter } from "@babylonjs/core/Particles/EmitterTypes/hemisphericParticleEmitter";
3747
3755
  interface IHemisphericEmitterGridComponentProps {
3748
3756
  globalState: GlobalState;
3749
3757
  emitter: HemisphericParticleEmitter;
@@ -3761,7 +3769,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/pa
3761
3769
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
3762
3770
  import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
3763
3771
  import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
3764
- import { PointParticleEmitter } from '@babylonjs/core/Particles/EmitterTypes/pointParticleEmitter';
3772
+ import { PointParticleEmitter } from "@babylonjs/core/Particles/EmitterTypes/pointParticleEmitter";
3765
3773
  interface IPointEmitterGridComponentProps {
3766
3774
  globalState: GlobalState;
3767
3775
  emitter: PointParticleEmitter;
@@ -3779,7 +3787,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/pa
3779
3787
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
3780
3788
  import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
3781
3789
  import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
3782
- import { SphereParticleEmitter } from '@babylonjs/core/Particles/EmitterTypes/sphereParticleEmitter';
3790
+ import { SphereParticleEmitter } from "@babylonjs/core/Particles/EmitterTypes/sphereParticleEmitter";
3783
3791
  interface ISphereEmitterGridComponentProps {
3784
3792
  globalState: GlobalState;
3785
3793
  emitter: SphereParticleEmitter;
@@ -3794,9 +3802,9 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/pa
3794
3802
  declare module "@babylonjs/inspector/components/actionTabs/lines/meshPickerComponent" {
3795
3803
  import * as React from "react";
3796
3804
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
3797
- import { Observable } from '@babylonjs/core/Misc/observable';
3805
+ import { Observable } from "@babylonjs/core/Misc/observable";
3798
3806
  import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
3799
- import { Scene } from '@babylonjs/core/scene';
3807
+ import { Scene } from "@babylonjs/core/scene";
3800
3808
  interface IMeshPickerComponentProps {
3801
3809
  globalState: GlobalState;
3802
3810
  target: any;
@@ -3816,8 +3824,8 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/pa
3816
3824
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
3817
3825
  import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
3818
3826
  import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
3819
- import { MeshParticleEmitter } from '@babylonjs/core/Particles/EmitterTypes/meshParticleEmitter';
3820
- import { Scene } from '@babylonjs/core/scene';
3827
+ import { MeshParticleEmitter } from "@babylonjs/core/Particles/EmitterTypes/meshParticleEmitter";
3828
+ import { Scene } from "@babylonjs/core/scene";
3821
3829
  interface IMeshEmitterGridComponentProps {
3822
3830
  globalState: GlobalState;
3823
3831
  emitter: MeshParticleEmitter;
@@ -3832,11 +3840,11 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/pa
3832
3840
  }
3833
3841
  }
3834
3842
  declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/particleSystems/factorGradientStepGridComponent" {
3835
- import * as React from 'react';
3843
+ import * as React from "react";
3836
3844
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
3837
- import { FactorGradient } from '@babylonjs/core/Misc/gradients';
3845
+ import { FactorGradient } from "@babylonjs/core/Misc/gradients";
3838
3846
  import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
3839
- import { IParticleSystem } from '@babylonjs/core/Particles/IParticleSystem';
3847
+ import { IParticleSystem } from "@babylonjs/core/Particles/IParticleSystem";
3840
3848
  interface IFactorGradientStepGridComponent {
3841
3849
  globalState: GlobalState;
3842
3850
  gradient: FactorGradient;
@@ -3869,11 +3877,11 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/pa
3869
3877
  }
3870
3878
  }
3871
3879
  declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/particleSystems/colorGradientStepGridComponent" {
3872
- import * as React from 'react';
3880
+ import * as React from "react";
3873
3881
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
3874
- import { ColorGradient, Color3Gradient } from '@babylonjs/core/Misc/gradients';
3882
+ import { ColorGradient, Color3Gradient } from "@babylonjs/core/Misc/gradients";
3875
3883
  import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
3876
- import { IParticleSystem } from '@babylonjs/core/Particles/IParticleSystem';
3884
+ import { IParticleSystem } from "@babylonjs/core/Particles/IParticleSystem";
3877
3885
  interface IColorGradientStepGridComponent {
3878
3886
  globalState: GlobalState;
3879
3887
  gradient: ColorGradient | Color3Gradient;
@@ -3917,10 +3925,10 @@ declare module "@babylonjs/inspector/sharedUiComponents/lines/linkButtonComponen
3917
3925
  declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/particleSystems/valueGradientGridComponent" {
3918
3926
  import * as React from "react";
3919
3927
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
3920
- import { IValueGradient } from '@babylonjs/core/Misc/gradients';
3928
+ import { IValueGradient } from "@babylonjs/core/Misc/gradients";
3921
3929
  import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
3922
- import { Nullable } from '@babylonjs/core/types';
3923
- import { IParticleSystem } from '@babylonjs/core/Particles/IParticleSystem';
3930
+ import { Nullable } from "@babylonjs/core/types";
3931
+ import { IParticleSystem } from "@babylonjs/core/Particles/IParticleSystem";
3924
3932
  export enum GradientGridMode {
3925
3933
  Factor = 0,
3926
3934
  Color3 = 1,
@@ -3952,7 +3960,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/pa
3952
3960
  import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
3953
3961
  import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
3954
3962
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
3955
- import { IParticleSystem } from '@babylonjs/core/Particles/IParticleSystem';
3963
+ import { IParticleSystem } from "@babylonjs/core/Particles/IParticleSystem";
3956
3964
  interface IParticleSystemPropertyGridComponentProps {
3957
3965
  globalState: GlobalState;
3958
3966
  system: IParticleSystem;
@@ -3979,7 +3987,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/sp
3979
3987
  import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
3980
3988
  import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
3981
3989
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
3982
- import { SpriteManager } from '@babylonjs/core/Sprites/spriteManager';
3990
+ import { SpriteManager } from "@babylonjs/core/Sprites/spriteManager";
3983
3991
  interface ISpriteManagerPropertyGridComponentProps {
3984
3992
  globalState: GlobalState;
3985
3993
  spriteManager: SpriteManager;
@@ -4005,7 +4013,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/sp
4005
4013
  import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
4006
4014
  import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
4007
4015
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
4008
- import { Sprite } from '@babylonjs/core/Sprites/sprite';
4016
+ import { Sprite } from "@babylonjs/core/Sprites/sprite";
4009
4017
  interface ISpritePropertyGridComponentProps {
4010
4018
  globalState: GlobalState;
4011
4019
  sprite: Sprite;
@@ -4059,7 +4067,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/ca
4059
4067
  import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
4060
4068
  import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
4061
4069
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
4062
- import { FollowCamera } from '@babylonjs/core/Cameras/followCamera';
4070
+ import { FollowCamera } from "@babylonjs/core/Cameras/followCamera";
4063
4071
  interface IFollowCameraPropertyGridComponentProps {
4064
4072
  globalState: GlobalState;
4065
4073
  camera: FollowCamera;
@@ -4077,8 +4085,8 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/so
4077
4085
  import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
4078
4086
  import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
4079
4087
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
4080
- import { Sound } from '@babylonjs/core/Audio/sound';
4081
- import { IExplorerExtensibilityGroup } from '@babylonjs/core/Debug/debugLayer';
4088
+ import { Sound } from "@babylonjs/core/Audio/sound";
4089
+ import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
4082
4090
  interface ISoundPropertyGridComponentProps {
4083
4091
  globalState: GlobalState;
4084
4092
  sound: Sound;
@@ -4097,7 +4105,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/la
4097
4105
  import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
4098
4106
  import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
4099
4107
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
4100
- import { IExplorerExtensibilityGroup } from '@babylonjs/core/Debug/debugLayer';
4108
+ import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
4101
4109
  import { EffectLayer } from "@babylonjs/core/Layers/effectLayer";
4102
4110
  interface ILayerPropertyGridComponentProps {
4103
4111
  globalState: GlobalState;
@@ -4376,8 +4384,8 @@ declare module "@babylonjs/inspector/components/sceneExplorer/entities/lightTree
4376
4384
  declare module "@babylonjs/inspector/components/sceneExplorer/entities/materialTreeItemComponent" {
4377
4385
  import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
4378
4386
  import { Material } from "@babylonjs/core/Materials/material";
4379
- import * as React from 'react';
4380
- import { NodeMaterial } from '@babylonjs/core/Materials/Node/nodeMaterial';
4387
+ import * as React from "react";
4388
+ import { NodeMaterial } from "@babylonjs/core/Materials/Node/nodeMaterial";
4381
4389
  interface IMaterialTreeItemComponentProps {
4382
4390
  material: Material | NodeMaterial;
4383
4391
  extensibilityGroups?: IExplorerExtensibilityGroup[];
@@ -4391,7 +4399,7 @@ declare module "@babylonjs/inspector/components/sceneExplorer/entities/materialT
4391
4399
  declare module "@babylonjs/inspector/components/sceneExplorer/entities/textureTreeItemComponent" {
4392
4400
  import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
4393
4401
  import { Texture } from "@babylonjs/core/Materials/Textures/texture";
4394
- import * as React from 'react';
4402
+ import * as React from "react";
4395
4403
  interface ITextureTreeItemComponentProps {
4396
4404
  texture: Texture;
4397
4405
  extensibilityGroups?: IExplorerExtensibilityGroup[];
@@ -4419,7 +4427,7 @@ declare module "@babylonjs/inspector/components/sceneExplorer/entities/transform
4419
4427
  declare module "@babylonjs/inspector/components/sceneExplorer/entities/gui/controlTreeItemComponent" {
4420
4428
  import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
4421
4429
  import { Control } from "@babylonjs/gui/2D/controls/control";
4422
- import * as React from 'react';
4430
+ import * as React from "react";
4423
4431
  interface IControlTreeItemComponentProps {
4424
4432
  control: Control;
4425
4433
  extensibilityGroups?: IExplorerExtensibilityGroup[];
@@ -4438,8 +4446,8 @@ declare module "@babylonjs/inspector/components/sceneExplorer/entities/gui/contr
4438
4446
  declare module "@babylonjs/inspector/components/sceneExplorer/entities/gui/advancedDynamicTextureTreeItemComponent" {
4439
4447
  import { Observable } from "@babylonjs/core/Misc/observable";
4440
4448
  import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
4441
- import { AdvancedDynamicTexture } from '@babylonjs/gui/2D/advancedDynamicTexture';
4442
- import * as React from 'react';
4449
+ import { AdvancedDynamicTexture } from "@babylonjs/gui/2D/advancedDynamicTexture";
4450
+ import * as React from "react";
4443
4451
  interface IAdvancedDynamicTextureTreeItemComponentProps {
4444
4452
  texture: AdvancedDynamicTexture;
4445
4453
  extensibilityGroups?: IExplorerExtensibilityGroup[];
@@ -4472,8 +4480,8 @@ declare module "@babylonjs/inspector/components/sceneExplorer/entities/animation
4472
4480
  }
4473
4481
  declare module "@babylonjs/inspector/components/sceneExplorer/entities/postProcessTreeItemComponent" {
4474
4482
  import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
4475
- import { PostProcess } from '@babylonjs/core/PostProcesses/postProcess';
4476
- import * as React from 'react';
4483
+ import { PostProcess } from "@babylonjs/core/PostProcesses/postProcess";
4484
+ import * as React from "react";
4477
4485
  interface IPostProcessItemComponentProps {
4478
4486
  postProcess: PostProcess;
4479
4487
  extensibilityGroups?: IExplorerExtensibilityGroup[];
@@ -4486,8 +4494,8 @@ declare module "@babylonjs/inspector/components/sceneExplorer/entities/postProce
4486
4494
  }
4487
4495
  declare module "@babylonjs/inspector/components/sceneExplorer/entities/renderingPipelineTreeItemComponent" {
4488
4496
  import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
4489
- import { PostProcessRenderPipeline } from '@babylonjs/core/PostProcesses/RenderPipeline/postProcessRenderPipeline';
4490
- import * as React from 'react';
4497
+ import { PostProcessRenderPipeline } from "@babylonjs/core/PostProcesses/RenderPipeline/postProcessRenderPipeline";
4498
+ import * as React from "react";
4491
4499
  interface IRenderPipelineItemComponenttProps {
4492
4500
  renderPipeline: PostProcessRenderPipeline;
4493
4501
  extensibilityGroups?: IExplorerExtensibilityGroup[];
@@ -4501,7 +4509,7 @@ declare module "@babylonjs/inspector/components/sceneExplorer/entities/rendering
4501
4509
  declare module "@babylonjs/inspector/components/sceneExplorer/entities/skeletonTreeItemComponent" {
4502
4510
  import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
4503
4511
  import * as React from "react";
4504
- import { Skeleton } from '@babylonjs/core/Bones/skeleton';
4512
+ import { Skeleton } from "@babylonjs/core/Bones/skeleton";
4505
4513
  interface ISkeletonTreeItemComponentProps {
4506
4514
  skeleton: Skeleton;
4507
4515
  extensibilityGroups?: IExplorerExtensibilityGroup[];
@@ -4515,7 +4523,7 @@ declare module "@babylonjs/inspector/components/sceneExplorer/entities/skeletonT
4515
4523
  declare module "@babylonjs/inspector/components/sceneExplorer/entities/boneTreeItemComponent" {
4516
4524
  import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
4517
4525
  import * as React from "react";
4518
- import { Bone } from '@babylonjs/core/Bones/bone';
4526
+ import { Bone } from "@babylonjs/core/Bones/bone";
4519
4527
  interface IBoneTreeItemComponenttProps {
4520
4528
  bone: Bone;
4521
4529
  extensibilityGroups?: IExplorerExtensibilityGroup[];
@@ -4528,8 +4536,8 @@ declare module "@babylonjs/inspector/components/sceneExplorer/entities/boneTreeI
4528
4536
  }
4529
4537
  declare module "@babylonjs/inspector/components/sceneExplorer/entities/particleSystemTreeItemComponent" {
4530
4538
  import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
4531
- import * as React from 'react';
4532
- import { IParticleSystem } from '@babylonjs/core/Particles/IParticleSystem';
4539
+ import * as React from "react";
4540
+ import { IParticleSystem } from "@babylonjs/core/Particles/IParticleSystem";
4533
4541
  interface IParticleSystemTreeItemComponentProps {
4534
4542
  system: IParticleSystem;
4535
4543
  extensibilityGroups?: IExplorerExtensibilityGroup[];
@@ -4542,8 +4550,8 @@ declare module "@babylonjs/inspector/components/sceneExplorer/entities/particleS
4542
4550
  }
4543
4551
  declare module "@babylonjs/inspector/components/sceneExplorer/entities/spriteManagerTreeItemComponent" {
4544
4552
  import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
4545
- import * as React from 'react';
4546
- import { SpriteManager } from '@babylonjs/core/Sprites/spriteManager';
4553
+ import * as React from "react";
4554
+ import { SpriteManager } from "@babylonjs/core/Sprites/spriteManager";
4547
4555
  interface ISpriteManagerTreeItemComponentProps {
4548
4556
  spriteManager: SpriteManager;
4549
4557
  extensibilityGroups?: IExplorerExtensibilityGroup[];
@@ -4556,8 +4564,8 @@ declare module "@babylonjs/inspector/components/sceneExplorer/entities/spriteMan
4556
4564
  }
4557
4565
  declare module "@babylonjs/inspector/components/sceneExplorer/entities/spriteTreeItemComponent" {
4558
4566
  import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
4559
- import * as React from 'react';
4560
- import { Sprite } from '@babylonjs/core/Sprites/sprite';
4567
+ import * as React from "react";
4568
+ import { Sprite } from "@babylonjs/core/Sprites/sprite";
4561
4569
  interface ISpriteTreeItemComponentProps {
4562
4570
  sprite: Sprite;
4563
4571
  extensibilityGroups?: IExplorerExtensibilityGroup[];
@@ -4585,7 +4593,7 @@ declare module "@babylonjs/inspector/components/sceneExplorer/entities/targetedA
4585
4593
  declare module "@babylonjs/inspector/components/sceneExplorer/entities/soundTreeItemComponent" {
4586
4594
  import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
4587
4595
  import * as React from "react";
4588
- import { Sound } from '@babylonjs/core/Audio/sound';
4596
+ import { Sound } from "@babylonjs/core/Audio/sound";
4589
4597
  interface ISoundTreeItemComponentProps {
4590
4598
  sound: Sound;
4591
4599
  extensibilityGroups?: IExplorerExtensibilityGroup[];
@@ -4598,7 +4606,7 @@ declare module "@babylonjs/inspector/components/sceneExplorer/entities/soundTree
4598
4606
  }
4599
4607
  declare module "@babylonjs/inspector/components/sceneExplorer/entities/effectLayerPipelineTreeItemComponent" {
4600
4608
  import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
4601
- import * as React from 'react';
4609
+ import * as React from "react";
4602
4610
  import { EffectLayer } from "@babylonjs/core/Layers/effectLayer";
4603
4611
  interface IEffectLayerItemComponenttProps {
4604
4612
  layer: EffectLayer;
@@ -4800,7 +4808,7 @@ declare module "@babylonjs/inspector/components/embedHost/embedHostComponent" {
4800
4808
  import * as React from "react";
4801
4809
  import { Scene } from "@babylonjs/core/scene";
4802
4810
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
4803
- import { IExplorerExtensibilityGroup, DebugLayerTab } from '@babylonjs/core/Debug/debugLayer';
4811
+ import { IExplorerExtensibilityGroup, DebugLayerTab } from "@babylonjs/core/Debug/debugLayer";
4804
4812
  interface IEmbedHostComponentProps {
4805
4813
  scene: Scene;
4806
4814
  globalState: GlobalState;
@@ -4904,7 +4912,7 @@ declare module "@babylonjs/inspector/sharedUiComponents/lines/draggableLineCompo
4904
4912
  }
4905
4913
  }
4906
4914
  declare module "@babylonjs/inspector/sharedUiComponents/lines/iconButtonLineComponent" {
4907
- import * as React from 'react';
4915
+ import * as React from "react";
4908
4916
  export interface IIconButtonLineComponentProps {
4909
4917
  icon: string;
4910
4918
  onClick: () => void;