API reference
Every public class, method, and event in @codexo/exojs. Generated from source.
interfaceSceneTransitionRequirements
@codexo/exojs / core / stable
Render resources a SceneTransitionSession needs, declared once up front via SceneTransition.getRequirements so the Director can provision them before the session's first frame.
2
props
0
methods
0
events
Import
import { SceneTransitionRequirements } from '@codexo/exojs'Render resources a SceneTransitionSession needs, declared once up front via SceneTransition.getRequirements so the Director can provision them before the session's first frame.
Properties2
currentFrame: "direct" | "none" | "texture"'direct': the live surface draws straight to the screen, no texture. 'texture': the live surface renders into a pooled offscreen texture every frame instead. 'none': no live-surface resource at all.
outgoingFrame: "none" | "snapshot"A one-time snapshot of the outgoing scene's render surface, captured once before the session starts. 'none' (the common case) requests nothing.
Source