A set of options for a VRMMetaLoaderPlugin instance.

interface VRMMetaImporterOptions {
    acceptLicenseUrls?: string[];
    acceptV0Meta?: boolean;
    needThumbnailImage?: boolean;
}

Properties

acceptLicenseUrls?: string[]

A list of license urls. This meta loader will accept these licenseUrls. Otherwise it will throw an error.

acceptV0Meta?: boolean

Whether it should accept VRM0.0 meta or not. Note that it might load VRM0Meta instead of VRM1Meta when this is true. true by default.

needThumbnailImage?: boolean

If false, it won't load its thumbnail image (VRM1Meta.thumbnailImage). false by default.