API reference
Every public class, method, and event in @codexo/exojs. Generated from source.
typeChangeSceneOptions
Options for SceneDirector.change. Carries the activation `data` (when `Data` is not `void`), `suspendCurrent`, and an optional `transition` - a class-based `SceneTransition`/ `PhasedSceneTransition`, or an `{ enter, exit }` pair - resolved against the target's registry-level default to drive the switch through a SceneTransitionSession; see SceneDirector.change's doc comment for the full guarantee.
import { ChangeSceneOptions } from '@codexo/exojs'Options for SceneDirector.change. Carries the activation `data` (when `Data` is not `void`), `suspendCurrent`, and an optional `transition` - a class-based `SceneTransition`/ `PhasedSceneTransition`, or an `{ enter, exit }` pair - resolved against the target's registry-level default to drive the switch through a SceneTransitionSession; see SceneDirector.change's doc comment for the full guarantee.
[Data] extends [void] ? { data?: never } : { data: Readonly<Data> } & { suspendCurrent?: boolean; transition?: SceneTransitionSelectionThe full set of values accepted for a `transition` option - call-site (`change()`/`restore()`/`unload()`) or registry-level default: a single SceneTransition (… }