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_ID.h')
-rw-r--r--source/blender/makesdna/DNA_ID.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_ID.h b/source/blender/makesdna/DNA_ID.h
index f2d860a2851..84757e313ed 100644
--- a/source/blender/makesdna/DNA_ID.h
+++ b/source/blender/makesdna/DNA_ID.h
@@ -264,7 +264,12 @@ typedef struct IDOverrideLibrary {
typedef struct ID {
void *next, *prev;
struct ID *newid;
+
struct Library *lib;
+
+ /** If the ID is an asset, this pointer is set. Owning pointer. */
+ struct AssetMetaData *asset_data;
+
/** MAX_ID_NAME. */
char name[66];
/**
@@ -310,6 +315,7 @@ typedef struct ID {
struct ID *orig_id;
void *py_instance;
+ void *_pad1;
} ID;
/**