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
- Type:
int in [-32768, 32767], default 0
- author#
Name of the creator of the asset
- Type:
string, default “”, (never None)
- 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
- Type:
string, default “”, (never None)
- catalog_simple_name#
Simple name of the asset’s catalog, for debugging and data recovery purposes
- Type:
string, default “”, (readonly, never None)
- 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
- Type:
string, default “”, (never None)
- description#
A description of the asset to be displayed for the user
- Type:
string, default “”, (never None)
- 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
- Type:
string, default “”, (never None)
- tags#
Custom tags (name tokens) for the asset, used for filtering and general asset management
- Type:
AssetTags
bpy_prop_collection
ofAssetTag
, (readonly)
- classmethod bl_rna_get_subclass(id, default=None)#
- Parameters:
id (string) – The RNA type identifier.
- Returns:
The RNA type or default when not found.
- Return type:
bpy.types.Struct
subclass
- classmethod bl_rna_get_subclass_py(id, default=None)#
- Parameters:
id (string) – The RNA type identifier.
- Returns:
The class or default when not found.
- Return type:
type