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:
authorJeroen Bakker <jeroen@blender.org>2022-04-04 15:10:13 +0300
committerJeroen Bakker <jeroen@blender.org>2022-04-04 15:12:33 +0300
commit3ce6c5adfc6e9afd8a4db8d91084ae707db9b262 (patch)
treec1082b1da3485814cdafa20c69c8fbfd754a50c9 /source/blender/makesdna/DNA_userdef_types.h
parenta818a0f42793a2ad27daf6e4ee6cc2210b12567d (diff)
UserDef: Add experimental flag for 3d texturing brush.
This only adds a experimental flag to enable the 3d texturing brush, so future developments could check. Currently the flag does nothing as no functionality of the 3d texturing brush has been implemented.
Diffstat (limited to 'source/blender/makesdna/DNA_userdef_types.h')
-rw-r--r--source/blender/makesdna/DNA_userdef_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_userdef_types.h b/source/blender/makesdna/DNA_userdef_types.h
index 5fb8d0328f1..8a698050629 100644
--- a/source/blender/makesdna/DNA_userdef_types.h
+++ b/source/blender/makesdna/DNA_userdef_types.h
@@ -652,7 +652,8 @@ typedef struct UserDef_Experimental {
char use_named_attribute_nodes;
char use_select_nearest_on_first_click;
char enable_eevee_next;
- // char _pad[0];
+ char use_sculpt_texture_paint;
+ char _pad[7];
/** `makesdna` does not allow empty structs. */
} UserDef_Experimental;