UNPKG

react-krpano-toolkit

Version:

A React toolkit for KRPano integration with reusable functions and screen/hotspot configuration management

8 lines (7 loc) 308 B
import type { BlendMode, SceneOptions } from "../../types"; export declare function useScene(): { loadScene: (name: string, options?: SceneOptions) => void; preloadScene: (name: string) => void; switchScene: (name: string, blend?: BlendMode) => void; getCurrentScene: () => string | null; };