将当前目录操作推入撤销堆栈。
bpy.ops.asset.catalog_undo_push()
返回类型为 {'FINISHED'}
的字典。
import bpy
# 获取当前的目录
catalog = bpy.context.window_manager.assets_catalog
# 判断当前目录是否存在
if catalog.active_directory is None:
print("当前目录不存在")
else:
# 将当前目录操作推入撤销堆栈中
bpy.ops.asset.catalog_undo_push()