@cesdk/engine 1.61.0-nightly.20250912 → 1.61.0-nightly.20250914

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/index.d.ts CHANGED
@@ -6173,6 +6173,7 @@ export declare class EditorAPI {
6173
6173
  getSetting<K extends SettingKey>(keypath: OptionalPrefix<K>): SettingValueType<K>;
6174
6174
 
6175
6175
 
6176
+
6176
6177
  /**
6177
6178
  * Set a boolean setting value.
6178
6179
  *
@@ -8177,6 +8178,10 @@ export declare interface Settings {
8177
8178
  useSystemFontFallback: boolean;
8178
8179
  /** Whether to force the use of system emojis instead of custom emoji fonts. */
8179
8180
  forceSystemEmojis: boolean;
8181
+ /** Whether to select the page when a block is deselected and no other blocks are selected. */
8182
+ 'page/selectWhenNoBlocksSelected': boolean;
8183
+ /** Clamp thumbnail texture sizes to the platform's GPU texture limit. */
8184
+ clampThumbnailTextureSizes: boolean;
8180
8185
  /** The root directory used when resolving relative paths or accessing bundle:// URIs. */
8181
8186
  basePath: string;
8182
8187
  /** The URI for the default emoji font file. */
@@ -8235,6 +8240,8 @@ export declare interface Settings {
8235
8240
  snappingGuideColor: Color;
8236
8241
  /** The highlight color for text variables. */
8237
8242
  textVariableHighlightColor: Color;
8243
+ /** The fill color for handles. */
8244
+ handleFillColor: Color;
8238
8245
  /** The selection mode for double-click: Direct selects the clicked element, Hierarchical traverses the hierarchy. */
8239
8246
  doubleClickSelectionMode: 'Direct' | 'Hierarchical';
8240
8247
  /** The action performed for pinch gestures: None, Zoom, or Scale. */
@@ -8257,6 +8264,11 @@ export declare interface Settings {
8257
8264
 
8258
8265
 
8259
8266
 
8267
+
8268
+
8269
+
8270
+
8271
+
8260
8272
  }
8261
8273
 
8262
8274
  /**