interface ILoadURL {
    blob?: ArrayBuffer;
    cache?: boolean;
    constructParams?: [
        width: number,
        height: number,
        format: TextureFormat,
        mipmap: boolean,
        canRead: boolean,
        sRGB: boolean,
        premultiplyAlpha: boolean,
    ];
    group?: string;
    ignoreCache?: boolean;
    initiator?: ILoadTask;
    noRetry?: boolean;
    priority?: number;
    propertyParams?: TexturePropertyParams;
    silent?: boolean;
    type?: string;
    url: string;
    useWorkerLoader?: boolean;
    [key: string]: any;
}

层级 (查看层级一览)

可索引

  • [key: string]: any

属性

blob?: ArrayBuffer
cache?: boolean
constructParams?: [
    width: number,
    height: number,
    format: TextureFormat,
    mipmap: boolean,
    canRead: boolean,
    sRGB: boolean,
    premultiplyAlpha: boolean,
]
group?: string
ignoreCache?: boolean
initiator?: ILoadTask
noRetry?: boolean
priority?: number
propertyParams?: TexturePropertyParams
silent?: boolean
type?: string
url: string
useWorkerLoader?: boolean