Camera (Component)

From Neos Wiki
Jump to navigation Jump to search
This page contains changes which are not marked for translation.


This article or section is a Stub. You can help the Neos Wiki by expanding it.


Camera component as seen in the Scene Inspector

Fields

Fields
Name Type Description
persistent Bool Determines whether or not this item will be saved to the server.
UpdateOrder Int Controls the order in which this component is updated
Enabled Bool Controls whether or not this component is enabled
DoubleBuffered Bool Determines if DoubleBuffering is applied or not.
ForwardOnly Bool Determine whether the render technique is only forward.
Projection CameraProjection Determines whether it's perspective or orthographic
OrthographicSize Float The size of the render-output in orthographic view. (Only active when Projection is set to Orthographic
FieldOfView Float The size of the render-output in perspective view. (Only active when Projection is set to Perspective
NearClipping Float The point in units where the camera ignores near objects.
FarClipping Float The point in units where the camera ignores far objects.
UseTransformScale Bool Determines if the scale of the camera should be taken into account.
Clear CameraClearMode
ClearColor Color If CameraClearMode is set to Clear.
Viewport Rect 2D rectangular where the camera is allowed to render
Depth Float
RenderTexture IAssetProvider<RenderTexture> The RenderTextureProvider input in order to get a ITexture2D
Postprocessing Bool Determines if post processing is allowed.
ScreenSpaceReflections Bool Determines if ScreenSpaceReflections are rendered.
MotionBlur Bool Determines if MotionBlur is rendered or not.
RenderShadows Bool Determines if shadows are rendered or not.
SelectiveRender SyncRefList<Slot> A list of SyncReferences to slots the camera is allowed to render.
ExcludeRender SyncRefList<Slot> A list of SyncReferences to slots the camera is NOT allowed to render.

Usage

Examples

Related Components