API reference

Every public class, method, and event in @codexo/exojs. Generated from source.

I

interfaceCallbackRenderPassOptions

@codexo/exojs / rendering / stable

Options for CallbackRenderPass.

5
props
0
methods
0
events
Import
import { CallbackRenderPassOptions } from '@codexo/exojs'

Options for CallbackRenderPass.

Properties5
enabled?: boolean
Initial enabled state. Default true. Toggle later via the RenderPass.enabled field.
label?: string
Optional debug label for the inspector / logging. Default: the constructor name. Display only - not an identity.
Off-screen destination. When set, the callback runs redirected into this RenderTexture (save / restore); null / omitted → the active target. The callback's PassContext is scoped to whichever target is active, so pass.clear() / pass.render() act on it and never leak. Caller-owned and stable; never allocated, pooled, resized, or destroyed by the pass.
Source