class CameraComponent : Component

book_4_sparkGenerated
code_blocksInput

Description

The CameraComponent class is a crucial part of the Sandbox engine, responsible for managing camera behavior in a scene. Every scene should have at least one camera to render the view. This class provides various properties and methods to control camera settings, rendering, and interactions with the scene.

Members

Properties

Member NameSummary
ClearFlagsThe clear flags for this camera.
BackgroundColorThe background color of this camera's view if there's no 2D Sky in the scene.
IsMainCameraReturns true if this is the main game camera.
FovAxisThe axis to use for the field of view.
FieldOfViewThe field of view of this camera.
ZNearThe camera's near clip plane distance. A good value for this is about 5.
ZFarThe camera's far clip plane distance. Sensible ranges are between 1000 and 30000.
PriorityThe priority of this camera. Higher means it'll be rendered on top.
OrthographicWhether or not to use orthographic projection instead of perspective.
OrthographicHeightThe orthographic size for this camera while Orthographic is set to true.
TargetEye
RenderTagsA list of tags that will be checked to include specific game objects when rendering this camera.
RenderExcludeTagsA list of tags that will be checked to exclude specific game objects when rendering this camera.
ViewportThe size of the camera represented on the screen. Normalized between 0 and 1.
RenderTargetThe texture to draw this camera to. Requires Texture.CreateRenderTarget.
ScreenRectThe size of the viewport, in screen coordinates.
CustomProjectionMatrixAllows specifying a custom projection matrix for this camera.
CustomSizeAllows specifying a custom aspect ratio for this camera.
ProjectionMatrixGet frustum projection matrix.
HudAllows drawing on the camera. This is drawn before the post processing.
OverlayUsed to draw to the screen. This is drawn on top of everything, so is good for debug overlays etc.

Methods

Member NameSummary
AddCommandListAdd a command list to the render.
RemoveCommandListRemove an entry.
ClearCommandListsRemove all entries in this stage.
ResetResets the camera component to its default state.
UpdateSceneCameraUpdate a SceneCamera with the settings from this component.
AddHookAfterOpaqueAdds a render hook after opaque rendering.
AddHookAfterTransparentAdds a render hook after transparent rendering.
AddHookBeforeOverlayAdds a render hook before overlay rendering.
AddHookAfterUIAdds a render hook after UI rendering.
PointToScreenNormalConverts a world position to screen space in normalized coordinates.
PointToScreenPixelsConverts a world position to screen space in pixel coordinates.
ScreenPixelToRayConverts a screen pixel position to a world space ray.
ScreenNormalToRayConverts a screen normalized position to a world space ray.
ScreenToWorldConverts a screen position to a world position.
GetFrustumGets the camera's frustum for a given screen rectangle.
RenderToTextureRenders the camera's view to a specified texture.
CalculateObliqueMatrixCalculates a projection matrix with an oblique clip-plane defined in world space.