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:
authorHans Goudey <h.goudey@me.com>2022-04-26 18:17:53 +0300
committerHans Goudey <h.goudey@me.com>2022-04-26 18:18:30 +0300
commit3e7ee3f3bcd61a1fb1395683ba7ecc430c9932db (patch)
tree9751d8d412a97259bc4e9056b74825e5a5589bd6 /source/blender/makesrna
parentae94e36cfb2f3bc9a99b638782092d9c71d4b3c7 (diff)
Geometry Nodes: Move named attribute nodes out of experimental
Remove the experimental option for named attributes nodes show they are always available. Ref T91742
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_userdef.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index 5ddc8e97e45..1a2017f2dbb 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -6434,12 +6434,6 @@ static void rna_def_userdef_experimental(BlenderRNA *brna)
RNA_def_property_ui_text(
prop, "Override Templates", "Enable library override template in the python API");
- prop = RNA_def_property(srna, "use_named_attribute_nodes", PROP_BOOLEAN, PROP_NONE);
- RNA_def_property_boolean_sdna(prop, NULL, "use_named_attribute_nodes", 1);
- RNA_def_property_ui_text(prop,
- "Named Attribute Nodes",
- "Enable named attribute nodes in the geometry nodes add menu");
-
prop = RNA_def_property(srna, "enable_eevee_next", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "enable_eevee_next", 1);
RNA_def_property_ui_text(prop, "EEVEE Next", "Enable the new EEVEE codebase, requires restart");