AssetMetaData(bpy_struct)
base class — bpy_struct
- class bpy.types.AssetMetaData(bpy_struct)
Additional data stored for an asset data-block
- active_tag
Index of the tag set for editing (in [-32768, 32767], default 0)
- Type:
int
- author
Name of the creator of the asset (default “”, never None)
- Type:
str
- catalog_id
Identifier for the asset’s catalog, used by Blender to look up the asset’s catalog path. Must be a UUID according to RFC4122. (default “”, never None)
- Type:
str
- catalog_simple_name
Simple name of the asset’s catalog, for debugging and data recovery purposes (default “”, readonly, never None)
- Type:
str
- copyright
Copyright notice for this asset. An empty copyright notice does not necessarily indicate that this is copyright-free. Contact the author if any clarification is needed. (default “”, never None)
- Type:
str
- description
A description of the asset to be displayed for the user (default “”, never None)
- Type:
str
- license
The type of license this asset is distributed under. An empty license name does not necessarily indicate that this is free of licensing terms. Contact the author if any clarification is needed. (default “”, never None)
- Type:
str
- preferred_import_method
(default
'APPEND')- Type:
Literal[Asset Import Method Items]
- tags
Custom tags (name tokens) for the asset, used for filtering and general asset management (default None, readonly)
- use_preferred_import_method
When “Follow Asset or Preferences” is selected for the import method in the Asset Browser, use the preferred import method of this asset (default False)
- Type:
bool
- classmethod bl_rna_get_subclass(id, default=None, /)
- Parameters:
id (str) – The RNA type identifier.
default (
bpy.types.Struct| None) – The value to return when not found.
- Returns:
The RNA type or default when not found.
- Return type:
- classmethod bl_rna_get_subclass_py(id, default=None, /)
- Parameters:
id (str) – The RNA type identifier.
default (type | None) – The value to return when not found.
- Returns:
The class or default when not found.
- Return type:
type