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:
authorClément Foucault <foucault.clem@gmail.com>2022-01-27 00:05:55 +0300
committerClément Foucault <foucault.clem@gmail.com>2022-01-27 00:05:55 +0300
commit0bdf574ea20e6b138e243f2bf08e93b2e1ee5771 (patch)
tree5fc8580c93eef3e1d5ee7f993eeaebc07338521e /source/blender/nodes/geometry/nodes/node_geo_input_id.cc
parentaf87b6d8cb75d9d625378dee25d726a0d55f75c6 (diff)
parentbb1e2a80e4e9e9af68815e8d1cabee8ab831918e (diff)
Merge branch 'master' into draw-viewport-datadraw-viewport-data
Diffstat (limited to 'source/blender/nodes/geometry/nodes/node_geo_input_id.cc')
-rw-r--r--source/blender/nodes/geometry/nodes/node_geo_input_id.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/nodes/geometry/nodes/node_geo_input_id.cc b/source/blender/nodes/geometry/nodes/node_geo_input_id.cc
index 3fe0588a46d..afe7546f7e5 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_input_id.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_input_id.cc
@@ -20,7 +20,9 @@ namespace blender::nodes::node_geo_input_id_cc {
static void node_declare(NodeDeclarationBuilder &b)
{
- b.add_output<decl::Int>(N_("ID")).field_source();
+ b.add_output<decl::Int>(N_("ID")).field_source().description(
+ N_("The values from the \"id\" attribute on points, or the index if that attribute does not "
+ "exist"));
}
static void node_geo_exec(GeoNodeExecParams params)