Interface ViewManagerHooks

Per-event hooks the manager fires while it owns view lifecycle. Studio uses these to layer on the context-menu setup and HDR-sky setup for each View.

interface ViewManagerHooks {
    onViewCreated(
        view: View,
        record: ViewRecord,
        params: StudioCreateViewParams,
    ): void;
    onViewDestroyed(viewId: string): void;
}

Methods