Blender V5.0
node_geo_input_id.cc
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2023 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
6
8
10{
11 b.add_output<decl::Int>("ID").field_source().description(
12 "The values from the \"id\" attribute on points, or the index if that attribute does not "
13 "exist");
14}
15
17{
18 Field<int> position_field{std::make_shared<bke::IDAttributeFieldInput>()};
19 params.set_output("ID", std::move(position_field));
20}
21
22static void node_register()
23{
24 static blender::bke::bNodeType ntype;
25
26 geo_node_type_base(&ntype, "GeometryNodeInputID", GEO_NODE_INPUT_ID);
27 ntype.ui_name = "ID";
28 ntype.ui_description =
29 "Retrieve a stable random identifier value from the \"id\" attribute on the point domain, "
30 "or the index if the attribute does not exist";
31 ntype.enum_name_legacy = "INPUT_ID";
34 ntype.declare = node_declare;
36}
38
39} // namespace blender::nodes::node_geo_input_id_cc
#define NODE_CLASS_INPUT
Definition BKE_node.hh:447
#define GEO_NODE_INPUT_ID
#define NOD_REGISTER_NODE(REGISTER_FUNC)
uiWidgetBaseParameters params[MAX_WIDGET_BASE_BATCH]
void node_register_type(bNodeType &ntype)
Definition node.cc:2416
static void node_declare(NodeDeclarationBuilder &b)
static void node_geo_exec(GeoNodeExecParams params)
void geo_node_type_base(blender::bke::bNodeType *ntype, std::string idname, const std::optional< int16_t > legacy_type)
Defines a node type.
Definition BKE_node.hh:238
std::string ui_description
Definition BKE_node.hh:244
NodeGeometryExecFunction geometry_node_execute
Definition BKE_node.hh:354
const char * enum_name_legacy
Definition BKE_node.hh:247
NodeDeclareFunction declare
Definition BKE_node.hh:362