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>2021-03-08 21:37:49 +0300
committerHans Goudey <h.goudey@me.com>2021-03-08 21:37:49 +0300
commit2e19509e60b39837b6f9e38c8cdad64d341846ba (patch)
treecb183bc452e7ced0b07f75f681604e5431a222b3 /release
parenta45af290f37dfcf7702c5141e642b253a94c7857 (diff)
Geometry Nodes: Rename subdivision nodes
This makes the following changes to the name of the two geometry nodes subvision nodes: - `Subdivision Surface` -> `Subdivide Smooth` - `Subdivision Surface Simple` -> `Subdivide` Most of the benefit is that the names are shorter, but it also better mirrors the naming of operations in edit mode, and phrases the names more like actions. This was discussed with the geometry nodes team.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/nodeitems_builtins.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/nodeitems_builtins.py b/release/scripts/startup/nodeitems_builtins.py
index e013317b547..83e72e6f84c 100644
--- a/release/scripts/startup/nodeitems_builtins.py
+++ b/release/scripts/startup/nodeitems_builtins.py
@@ -516,8 +516,8 @@ geometry_node_categories = [
NodeItem("GeometryNodeBoolean"),
NodeItem("GeometryNodeTriangulate"),
NodeItem("GeometryNodeEdgeSplit"),
- NodeItem("GeometryNodeSubdivisionSurface"),
- NodeItem("GeometryNodeSubdivisionSurfaceSimple"),
+ NodeItem("GeometryNodeSubdivideSmooth"),
+ NodeItem("GeometryNodeSubdivide"),
]),
GeometryNodeCategory("GEO_POINT", "Point", items=[
NodeItem("GeometryNodePointDistribute"),