Differential D12689 Diff 42665 source/blender/nodes/geometry/nodes/legacy/node_geo_curve_endpoints.cc
Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/geometry/nodes/legacy/node_geo_curve_endpoints.cc
- This file was moved from source/blender/nodes/geometry/nodes/node_geo_curve_endpoints.cc.
| Show First 20 Lines • Show All 206 Lines • ▼ Show 20 Lines | |||||
| } | } | ||||
| } // namespace blender::nodes | } // namespace blender::nodes | ||||
| void register_node_type_geo_curve_endpoints() | void register_node_type_geo_curve_endpoints() | ||||
| { | { | ||||
| static bNodeType ntype; | static bNodeType ntype; | ||||
| geo_node_type_base(&ntype, GEO_NODE_CURVE_ENDPOINTS, "Curve Endpoints", NODE_CLASS_GEOMETRY, 0); | geo_node_type_base( | ||||
| &ntype, GEO_NODE_LEGACY_CURVE_ENDPOINTS, "Curve Endpoints", NODE_CLASS_GEOMETRY, 0); | |||||
| ntype.declare = blender::nodes::geo_node_curve_endpoints_declare; | ntype.declare = blender::nodes::geo_node_curve_endpoints_declare; | ||||
| ntype.geometry_node_execute = blender::nodes::geo_node_curve_endpoints_exec; | ntype.geometry_node_execute = blender::nodes::geo_node_curve_endpoints_exec; | ||||
| nodeRegisterType(&ntype); | nodeRegisterType(&ntype); | ||||
| } | } | ||||