Interface ViewManagerHooks

Per-event hooks the manager fires while it owns view lifecycle. Studio uses these to layer on the context-menu wiring and HDR-sky setup that used to live inline in the old createView.

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

Methods