Enum CameraCullingMode
List of options for interpreting a camera's culling mask. These are used by the Camera2D component.
Namespace: Unity.Tiny.Core2D
Syntax
public enum CameraCullingMode
Fields
Name | Description |
---|---|
All | Renders only entities that have all of their components in cullingMask. |
Any | Renders only entities that have at least one of their components in cullingMask. This is similar to how Unity's cullingMask works. |
NoCulling | Renders every renderable entity. Nothing is culled. |
None | Renders all entities except for those that have the components in cullingMask set. |