gameforge - v0.1.12
    Preparing search index...

    Interface AssetExtension<ASSET, META_DATA>

    This developer convenience object allows developers to group together the various asset parsers into a single object.

    PIXI

    interface AssetExtension<ASSET = any, META_DATA = any> {
        cache?: Partial<CacheParser<ASSET>>;
        detection?: Partial<FormatDetectionParser>;
        extension: Asset;
        loader?: Partial<LoaderParser<ASSET, META_DATA, Record<string, any>>>;
        resolver?: Partial<ResolveURLParser>;
    }

    Type Parameters

    • ASSET = any
    • META_DATA = any
    Index

    Properties

    cache?: Partial<CacheParser<ASSET>>
    detection?: Partial<FormatDetectionParser>
    extension: Asset
    loader?: Partial<LoaderParser<ASSET, META_DATA, Record<string, any>>>
    resolver?: Partial<ResolveURLParser>