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 19:06:40 +0300
committerBastien Montagne <bastien@blender.org>2020-10-08 19:19:09 +0300
commitd6f409b862715ba4a07212b5149d6d6c0ec269be (patch)
tree9c2090e5113f548890856d3028e107480ab24f85 /source/blender/makesdna/intern
parent51e43f27fa2ecb5529d14cdfd1c73447dd420046 (diff)
Add DNA defaults for ParticleSettings.
Diffstat (limited to 'source/blender/makesdna/intern')
-rw-r--r--source/blender/makesdna/intern/dna_defaults.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/makesdna/intern/dna_defaults.c b/source/blender/makesdna/intern/dna_defaults.c
index 953484992da..f0d76705e66 100644
--- a/source/blender/makesdna/intern/dna_defaults.c
+++ b/source/blender/makesdna/intern/dna_defaults.c
@@ -104,6 +104,7 @@
#include "DNA_modifier_types.h"
#include "DNA_movieclip_types.h"
#include "DNA_object_types.h"
+#include "DNA_particle_types.h"
#include "DNA_pointcloud_types.h"
#include "DNA_scene_types.h"
#include "DNA_simulation_types.h"
@@ -131,6 +132,7 @@
#include "DNA_modifier_defaults.h"
#include "DNA_movieclip_defaults.h"
#include "DNA_object_defaults.h"
+#include "DNA_particle_defaults.h"
#include "DNA_pointcloud_defaults.h"
#include "DNA_scene_defaults.h"
#include "DNA_simulation_defaults.h"
@@ -193,6 +195,9 @@ SDNA_DEFAULT_DECL_STRUCT(MovieClip);
/* DNA_object_defaults.h */
SDNA_DEFAULT_DECL_STRUCT(Object);
+/* DNA_particle_defaults.h */
+SDNA_DEFAULT_DECL_STRUCT(ParticleSettings);
+
/* DNA_pointcloud_defaults.h */
SDNA_DEFAULT_DECL_STRUCT(PointCloud);
@@ -357,6 +362,9 @@ const void *DNA_default_table[SDNA_TYPE_MAX] = {
/* DNA_object_defaults.h */
SDNA_DEFAULT_DECL(Object),
+ /* DNA_particle_defaults.h */
+ SDNA_DEFAULT_DECL(ParticleSettings),
+
/* DNA_pointcloud_defaults.h */
SDNA_DEFAULT_DECL(PointCloud),