Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/makesdna/DNA_space_types.h')
-rw-r--r--source/blender/makesdna/DNA_space_types.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_space_types.h b/source/blender/makesdna/DNA_space_types.h
index a7fcf2cfb89..2f3f52a6b82 100644
--- a/source/blender/makesdna/DNA_space_types.h
+++ b/source/blender/makesdna/DNA_space_types.h
@@ -812,8 +812,14 @@ typedef struct FileAssetSelectParams {
} FileAssetSelectParams;
typedef enum eFileAssetImportType {
+ /** Regular data-block linking. */
FILE_ASSET_IMPORT_LINK = 0,
+ /** Regular data-block appending (basically linking + "Make Local"). */
FILE_ASSET_IMPORT_APPEND = 1,
+ /** Append data-block with the #BLO_LIBLINK_APPEND_LOCAL_ID_REUSE flag enabled. Some typically
+ * heavy data dependencies (e.g. the image data-blocks of a material, the mesh of an object) may
+ * be reused from an earlier append. */
+ FILE_ASSET_IMPORT_APPEND_REUSE = 2,
} eFileAssetImportType;
/**