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
path: root/source
diff options
context:
space:
mode:
authorHans Goudey <h.goudey@me.com>2021-10-13 01:43:41 +0300
committerHans Goudey <h.goudey@me.com>2021-10-13 01:43:41 +0300
commit53af51ad50ec43ee960eb9125f0adf5c37e2a5cd (patch)
tree44d147b699aefc3f5fb22852e5b5ae46ef3cd3ef /source
parent9e3c84a5d68d139614998cc8f9b30d6251fa335c (diff)
Geometry Nodes: Add "XYZ" label to instance on points scale
Diffstat (limited to 'source')
-rw-r--r--source/blender/nodes/geometry/nodes/node_geo_instance_on_points.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/nodes/geometry/nodes/node_geo_instance_on_points.cc b/source/blender/nodes/geometry/nodes/node_geo_instance_on_points.cc
index 8c0c0763be8..047fdd0cd57 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_instance_on_points.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_instance_on_points.cc
@@ -44,6 +44,7 @@ static void geo_node_instance_on_points_declare(NodeDeclarationBuilder &b)
.description("Rotation of the instances");
b.add_input<decl::Vector>("Scale")
.default_value({1.0f, 1.0f, 1.0f})
+ .subtype(PROP_XYZ)
.supports_field()
.description("Scale of the instances");
b.add_input<decl::Int>("Stable ID")