Blender V5.0
node_geo_input_material_index.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>("Material Index").field_source();
12}
13
15{
16 Field<int> material_index_field = AttributeFieldInput::from<int>("material_index");
17 params.set_output("Material Index", std::move(material_index_field));
18}
19
20static void node_register()
21{
22 static blender::bke::bNodeType ntype;
23
24 geo_node_type_base(&ntype, "GeometryNodeInputMaterialIndex", GEO_NODE_INPUT_MATERIAL_INDEX);
25 ntype.ui_name = "Material Index";
26 ntype.ui_description =
27 "Retrieve the index of the material used for each element in the geometry's list of "
28 "materials";
29 ntype.enum_name_legacy = "INPUT_MATERIAL_INDEX";
32 ntype.declare = node_declare;
34}
36
37} // namespace blender::nodes::node_geo_input_material_index_cc
#define NODE_CLASS_INPUT
Definition BKE_node.hh:447
#define GEO_NODE_INPUT_MATERIAL_INDEX
#define NOD_REGISTER_NODE(REGISTER_FUNC)
static fn::GField from(std::string name, const CPPType &type, std::optional< std::string > socket_inspection_name=std::nullopt)
uiWidgetBaseParameters params[MAX_WIDGET_BASE_BATCH]
void node_register_type(bNodeType &ntype)
Definition node.cc:2416
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