Scene Scene { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The Scene property of the SceneRenderingWidget class represents the active scene that is currently being rendered. This property is essential for determining which scene's elements are displayed within the rendering widget.

Usage

To use the Scene property, you can access it directly from an instance of the SceneRenderingWidget class. This property is read-write, allowing you to get or set the active scene for rendering.

Example

// Example of accessing the Scene property

// Create an instance of SceneRenderingWidget
var sceneWidget = new SceneRenderingWidget();

// Access the current active scene
Scene currentScene = sceneWidget.Scene;

// Set a new scene to be rendered
sceneWidget.Scene = new Scene();

// Now the widget will render the new scene