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:
authorJacques Lucke <jacques@blender.org>2021-09-28 21:22:52 +0300
committerHans Goudey <h.goudey@me.com>2021-09-28 21:22:52 +0300
commit95fca22bfeb1d3e2edeeb71b9717e3528be14c17 (patch)
tree6767ffe3e8d4d3582c69b2027492a5d021ec1e84 /source/blender/makesdna/DNA_userdef_types.h
parent86ec9d79eca2a31044a5096df5d5ee244d15708d (diff)
Geometry Nodes: Remove experimental option for fields
This enables fields as the official workflow for geometry nodes. While many features are converted to use fields rather than the old attribute workflow, many are not yet converted. In that case, the unconverted nodes are still accessible with an experimental option. In the coming weeks the rest of the nodes will be converted. Differential Revision: https://developer.blender.org/D12672
Diffstat (limited to 'source/blender/makesdna/DNA_userdef_types.h')
-rw-r--r--source/blender/makesdna/DNA_userdef_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_userdef_types.h b/source/blender/makesdna/DNA_userdef_types.h
index 2399fb324d7..247f67f6b95 100644
--- a/source/blender/makesdna/DNA_userdef_types.h
+++ b/source/blender/makesdna/DNA_userdef_types.h
@@ -637,6 +637,7 @@ typedef struct UserDef_Experimental {
char no_override_auto_resync;
char no_proxy_to_override_conversion;
char use_cycles_debug;
+ char use_geometry_nodes_legacy;
char SANITIZE_AFTER_HERE;
/* The following options are automatically sanitized (set to 0)
* when the release cycle is not alpha. */
@@ -647,7 +648,6 @@ typedef struct UserDef_Experimental {
char use_sculpt_tools_tilt;
char use_extended_asset_browser;
char use_override_templates;
- char use_geometry_nodes_fields;
char _pad[3];
/** `makesdna` does not allow empty structs. */
} UserDef_Experimental;