UNPKG

@threlte/extras

Version:

Utilities, abstractions and plugins for your Threlte apps

9 lines (8 loc) 244 B
import type { Scene, Texture } from 'three'; type EnvironmentOptions = { scene: Scene; texture?: Texture | undefined; isBackground?: boolean; }; export declare const useEnvironment: (options: EnvironmentOptions) => void; export {};