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:
authorBastien Montagne <bastien@blender.org>2020-10-08 14:21:35 +0300
committerBastien Montagne <bastien@blender.org>2020-10-08 14:23:30 +0300
commitcbbdfe24aff76f610c2cd6c2f5210e2ed1aab00d (patch)
tree28e976c3914c97f4ef9bc0836f608ff4ca2b08d9 /source/blender/makesdna/intern
parentc290e4cbe6356650174c99a23b0f4f48e033c437 (diff)
Armature: Add minimal DNA defaults for bArmature.
Using mainly values used in `BKE_armature_add()`.
Diffstat (limited to 'source/blender/makesdna/intern')
-rw-r--r--source/blender/makesdna/intern/dna_defaults.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/blender/makesdna/intern/dna_defaults.c b/source/blender/makesdna/intern/dna_defaults.c
index 273f52a1d74..8f64797d441 100644
--- a/source/blender/makesdna/intern/dna_defaults.c
+++ b/source/blender/makesdna/intern/dna_defaults.c
@@ -109,6 +109,7 @@
#include "DNA_volume_types.h"
#include "DNA_world_types.h"
+#include "DNA_armature_defaults.h"
#include "DNA_brush_defaults.h"
#include "DNA_cachefile_defaults.h"
#include "DNA_camera_defaults.h"
@@ -135,6 +136,9 @@
#define SDNA_DEFAULT_DECL_STRUCT(struct_name) \
static const struct_name DNA_DEFAULT_##struct_name = _DNA_DEFAULT_##struct_name
+/* DNA_armature_defaults.h */
+SDNA_DEFAULT_DECL_STRUCT(bArmature);
+
/* DNA_brush_defaults.h */
SDNA_DEFAULT_DECL_STRUCT(Brush);
@@ -288,6 +292,9 @@ extern const bTheme U_theme_default;
/** Keep headers sorted. */
const void *DNA_default_table[SDNA_TYPE_MAX] = {
+ /* DNA_arnature_defaults.h */
+ SDNA_DEFAULT_DECL(bArmature),
+
/* DNA_brush_defaults.h */
SDNA_DEFAULT_DECL(Brush),