AbstractCameraObjectFilter
class AbstractCameraObjectFilter
An AbstractCameraObjectFilter allows you to override the camera's renderer filter. You can filter which objects/elements/materials/bakes the camera will render.
public class AbstractCameraObjectFilter
implements CameraObjectFilter
— Constructors (1) —
Constructor | Description |
---|---|
AbstractCameraObjectFilter() | Creates an new AbstractCameraObjectFilter instance. |
— Methods (5) —
Name | Description |
---|---|
boolean filterLight(Light light) | Filters which Light the camera will render, and returns true to allow rendering and false to block. |
boolean filterRenderer(ModelRenderer renderer) | Filters which ModelRenderer the camera will render, and returns true to allow rendering and false to block. |
boolean filterRenderer(SkinnedModelRenderer renderer) | Filters which SkinnedModelRenderer the camera will render, and returns true to allow rendering and false to block. |
boolean filterMaterialBake(Material material, Vertex bake) | Filters which Vertex bake and Material the camera will render, and returns true to allow rendering and false to block. |
boolean filter3DText(Component component) | Filters which [3DText] the camera will render, and returns true to allow rendering and false to block. |