@cesdk/node 1.68.0-nightly.20260116 → 1.68.0-nightly.20260117

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
@@ -7842,6 +7842,20 @@ export declare class SceneAPI {
7842
7842
  * @returns The current mode of the scene.
7843
7843
  */
7844
7844
  getMode(): SceneMode;
7845
+ /**
7846
+ * Set the mode of the scene.
7847
+ * Changing the scene mode affects how the engine processes and renders the scene:
7848
+ * - Video mode enables timeline-based playback, animations, and audio processing.
7849
+ * - Design mode disables playback-related features and uses different color space settings.
7850
+ *
7851
+ * ```javascript
7852
+ * engine.scene.setMode('Video');
7853
+ * ```
7854
+ *
7855
+ * @category Scene Properties
7856
+ * @param mode - The new mode for the scene.
7857
+ */
7858
+ setMode(mode: SceneMode): void;
7845
7859
  /**
7846
7860
  * Converts all values of the current scene into the given design unit.
7847
7861
  *