pixi.js
    Preparing search index...

    Interface AssetExtensionAdvanced<ASSET, PARSED_ASSET, UNLOAD_ASSET, CACHE_ASSET, META_DATA>Advanced

    A more verbose version of the AssetExtension, allowing you to set the cached, loaded, parsed, and unloaded asset separately

    interface AssetExtensionAdvanced<
        ASSET = any,
        PARSED_ASSET = ASSET,
        UNLOAD_ASSET = ASSET,
        CACHE_ASSET = ASSET,
        META_DATA = any,
    > {
        cache?: Partial<CacheParser<CACHE_ASSET>>;
        detection?: Partial<FormatDetectionParser>;
        extension: Asset;
        loader?: LoaderParserAdvanced<ASSET, PARSED_ASSET, UNLOAD_ASSET, META_DATA>;
        resolver?: Partial<ResolveURLParser>;
    }

    Type Parameters

    • ASSET = any
    • PARSED_ASSET = ASSET
    • UNLOAD_ASSET = ASSET
    • CACHE_ASSET = ASSET
    • META_DATA = any

    Hierarchy (View Summary)

    Index

    Properties

    the asset cache parser

    the asset format detection parser

    extension: Asset

    The type of extension

    the asset loader

    the asset resolve parser