The Camera
property of the SceneRenderingWidget
class specifies the camera component used for rendering the scene. If this property is set to null
, the rendering will default to using the camera associated with the Scene
property.
The Camera
property of the SceneRenderingWidget
class specifies the camera component used for rendering the scene. If this property is set to null
, the rendering will default to using the camera associated with the Scene
property.
To use the Camera
property, you can assign a CameraComponent
to it, which will then be used for rendering the scene in the widget. If you do not assign a camera, the widget will automatically use the camera from the associated Scene
.
// Example of setting the Camera property var sceneWidget = new SceneRenderingWidget(); var customCamera = new CameraComponent(); sceneWidget.Camera = customCamera; // If Camera is not set, it will use the Scene's camera sceneWidget.Camera = null; // Fallback to Scene.Camera