@babylonjs/inspector 8.33.4-preview → 8.34.0-preview
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.
- package/lib/index.d.ts +11 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -17371,6 +17371,10 @@ interface ISpriteManager extends IDisposable {
|
|
|
17371
17371
|
cellHeight: number;
|
|
17372
17372
|
/** @internal */
|
|
17373
17373
|
_wasDispatched: boolean;
|
|
17374
|
+
/**
|
|
17375
|
+
* Specifies if the sprite manager should be serialized
|
|
17376
|
+
*/
|
|
17377
|
+
doNotSerialize?: boolean;
|
|
17374
17378
|
/**
|
|
17375
17379
|
* Tests the intersection of a sprite with a specific ray.
|
|
17376
17380
|
* @param ray The ray we are sending to test the collision
|
|
@@ -17445,6 +17449,10 @@ declare class SpriteManager implements ISpriteManager {
|
|
|
17445
17449
|
* Gets or sets the unique id of the sprite
|
|
17446
17450
|
*/
|
|
17447
17451
|
uniqueId: number;
|
|
17452
|
+
/**
|
|
17453
|
+
* Specifies if the sprite manager should be serialized
|
|
17454
|
+
*/
|
|
17455
|
+
doNotSerialize: boolean;
|
|
17448
17456
|
/**
|
|
17449
17457
|
* Gets the array of sprites
|
|
17450
17458
|
*/
|
|
@@ -27204,6 +27212,9 @@ declare class MirrorTexture extends RenderTargetTexture {
|
|
|
27204
27212
|
set blurKernelY(value: number);
|
|
27205
27213
|
get blurKernelY(): number;
|
|
27206
27214
|
private _autoComputeBlurKernel;
|
|
27215
|
+
resize(size: TextureSize | {
|
|
27216
|
+
ratio: number;
|
|
27217
|
+
}): void;
|
|
27207
27218
|
protected _onRatioRescale(): void;
|
|
27208
27219
|
private _updateGammaSpace;
|
|
27209
27220
|
private _imageProcessingConfigChangeObserver;
|