@cesdk/engine 1.62.0-nightly.20251005 → 1.62.0-nightly.20251007
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.62.0-nightly.20251005-JDNGILSL.wasm → cesdk-v1.62.0-nightly.20251007-RLV7JFHE.wasm} +0 -0
- package/assets/core/{worker-host-v1.62.0-nightly.20251005.js → worker-host-v1.62.0-nightly.20251007.js} +1 -1
- package/index.d.ts +5 -1
- package/index.js +1 -1
- package/package.json +1 -1
- /package/assets/core/{cesdk-v1.62.0-nightly.20251005-44YCFRT6.data → cesdk-v1.62.0-nightly.20251007-44YCFRT6.data} +0 -0
package/index.d.ts
CHANGED
|
@@ -8193,6 +8193,8 @@ export declare interface Settings {
|
|
|
8193
8193
|
'page/selectWhenNoBlocksSelected': boolean;
|
|
8194
8194
|
/** Clamp thumbnail texture sizes to the platform's GPU texture limit. */
|
|
8195
8195
|
clampThumbnailTextureSizes: boolean;
|
|
8196
|
+
/** Toggle the dock components visibility */
|
|
8197
|
+
'dock/hideLabels': boolean;
|
|
8196
8198
|
/** The root directory used when resolving relative paths or accessing bundle:// URIs. */
|
|
8197
8199
|
basePath: string;
|
|
8198
8200
|
/** The URI for the default emoji font file. */
|
|
@@ -8261,6 +8263,8 @@ export declare interface Settings {
|
|
|
8261
8263
|
'touch/rotateAction': 'None' | 'Rotate';
|
|
8262
8264
|
/** Controls behavior when clamp area is smaller than viewport: Center or Reverse. */
|
|
8263
8265
|
'camera/clamping/overshootMode': 'Center' | 'Reverse';
|
|
8266
|
+
/** Controls the icon size of the dock components */
|
|
8267
|
+
'dock/iconSize': 'normal' | 'large';
|
|
8264
8268
|
|
|
8265
8269
|
|
|
8266
8270
|
|
|
@@ -8316,7 +8320,7 @@ export declare type SettingsColorRGBA = SettingsColor;
|
|
|
8316
8320
|
* @deprecated Use keyof Settings or extract the enum keys from Settings instead.
|
|
8317
8321
|
* @public
|
|
8318
8322
|
*/
|
|
8319
|
-
export declare type SettingsEnum = Pick<Settings, 'doubleClickSelectionMode' | 'touch/pinchAction' | 'touch/rotateAction' | 'camera/clamping/overshootMode'>;
|
|
8323
|
+
export declare type SettingsEnum = Pick<Settings, 'doubleClickSelectionMode' | 'touch/pinchAction' | 'touch/rotateAction' | 'camera/clamping/overshootMode' | 'dock/iconSize'>;
|
|
8320
8324
|
|
|
8321
8325
|
/**
|
|
8322
8326
|
* Represents the float settings available in the editor.
|