@cesdk/node 1.72.0-nightly.20260312 → 1.72.0-nightly.20260314
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/assets/core/{cesdk-v1.72.0-nightly.20260312-6W4HYFPK.wasm → cesdk-v1.72.0-nightly.20260314-7VCBMOPD.wasm} +0 -0
- package/index.d.ts +5 -1
- package/index.js +1 -1
- package/package.json +1 -1
- /package/assets/core/{cesdk-v1.72.0-nightly.20260312-MLEZSZ4D.data → cesdk-v1.72.0-nightly.20260314-MLEZSZ4D.data} +0 -0
|
Binary file
|
package/index.d.ts
CHANGED
|
@@ -8527,7 +8527,7 @@ export declare type SettingEnumValues = TouchPinchAction | TouchRotateAction | C
|
|
|
8527
8527
|
export declare type SettingFloatPropertyName = 'positionSnappingThreshold' | 'rotationSnappingThreshold' | 'controlGizmo/blockScaleDownLimit' | 'listIndentPerLevel' | (string & {});
|
|
8528
8528
|
|
|
8529
8529
|
/** @public */
|
|
8530
|
-
export declare type SettingIntPropertyName = 'maxImageSize' | (string & {});
|
|
8530
|
+
export declare type SettingIntPropertyName = 'maxImageSize' | 'maxPreviewResolution' | (string & {});
|
|
8531
8531
|
|
|
8532
8532
|
/**
|
|
8533
8533
|
* Union type of all valid setting keys.
|
|
@@ -8662,6 +8662,10 @@ export declare interface Settings {
|
|
|
8662
8662
|
rotationSnappingThreshold: number;
|
|
8663
8663
|
/** The maximum size (width or height) in pixels for images. */
|
|
8664
8664
|
maxImageSize: number;
|
|
8665
|
+
/** The maximum dimension (width or height) in physical pixels for preview rendering.
|
|
8666
|
+
* When greater than 0, the scene is rendered at reduced resolution and upscaled for improved performance.
|
|
8667
|
+
* Does not affect exports. Set to -1 to disable (default). */
|
|
8668
|
+
maxPreviewResolution: number;
|
|
8665
8669
|
/** The color of the border outline for selected elements. */
|
|
8666
8670
|
borderOutlineColor: Color;
|
|
8667
8671
|
/** The background clear color. */
|