UNPKG

@polygonjs/polygonjs

Version:

node-based WebGL 3D engine https://polygonjs.com

10 lines (9 loc) 459 B
import { TextureLoadOptions } from './_BaseImageLoader'; import { CubeTextureLoader, Texture } from 'three'; import { CoreBaseLoader } from '../_Base'; export declare class CoreCubeTextureLoader extends CoreBaseLoader<string[]> { static PARAM_DEFAULT_PREFIX: string; static PARAM_DEFAULT_SUFFIX: string; loadImage(options: TextureLoadOptions): Promise<Texture>; protected _getLoader(options: TextureLoadOptions): Promise<CubeTextureLoader>; }