Esposter
    Preparing search index...

    Interface SceneLifecycleHooks

    interface SceneLifecycleHooks {
        onCreate?: (scene: SceneWithPlugins) => void;
        onInit?: (scene: SceneWithPlugins) => void;
        onPreload?: (scene: SceneWithPlugins) => void;
        onUpdate?: (scene: SceneWithPlugins, time: number, delta: number) => void;
    }
    Index

    Properties

    onCreate?: (scene: SceneWithPlugins) => void
    onInit?: (scene: SceneWithPlugins) => void
    onPreload?: (scene: SceneWithPlugins) => void
    onUpdate?: (scene: SceneWithPlugins, time: number, delta: number) => void