[Bf-blender-cvs] [5665c1b4110] hair_guides: Stub edit data for groom.

Lukas Tönne noreply at git.blender.org
Tue Dec 19 13:56:04 CET 2017


Commit: 5665c1b41108b3ecde53093b540558597d68e34e
Author: Lukas Tönne
Date:   Tue Dec 19 11:33:08 2017 +0000
Branches: hair_guides
https://developer.blender.org/rB5665c1b41108b3ecde53093b540558597d68e34e

Stub edit data for groom.

===================================================================

M	source/blender/makesdna/DNA_groom_types.h

===================================================================

diff --git a/source/blender/makesdna/DNA_groom_types.h b/source/blender/makesdna/DNA_groom_types.h
index 0d3e74aa774..e3e669cdf88 100644
--- a/source/blender/makesdna/DNA_groom_types.h
+++ b/source/blender/makesdna/DNA_groom_types.h
@@ -55,6 +55,11 @@ typedef struct GroomBundle {
 	ListBase sections;                  /* List of GroomBundleSection */
 } GroomBundle;
 
+/* Editable groom data */
+typedef struct EditGroom {
+	ListBase bundles;       /* List of GroomBundle */
+} EditGroom;
+
 /* Groom curves for creating hair styles */
 typedef struct Groom {
 	ID id;                  /* Groom data is a datablock */
@@ -63,6 +68,8 @@ typedef struct Groom {
 	struct BoundBox *bb;
 	
 	ListBase bundles;       /* List of GroomBundle */
+	
+	EditGroom *edit_groom;
 } Groom;
 
 #ifdef __cplusplus



More information about the Bf-blender-cvs mailing list