Differential D12689 Diff 42665 source/blender/nodes/geometry/nodes/legacy/node_geo_curve_to_points.cc
Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/geometry/nodes/legacy/node_geo_curve_to_points.cc
- This file was moved from source/blender/nodes/geometry/nodes/node_geo_curve_to_points.cc.
| Show First 20 Lines • Show All 352 Lines • ▼ Show 20 Lines | |||||
| } | } | ||||
| } // namespace blender::nodes | } // namespace blender::nodes | ||||
| void register_node_type_geo_curve_to_points() | void register_node_type_geo_curve_to_points() | ||||
| { | { | ||||
| static bNodeType ntype; | static bNodeType ntype; | ||||
| geo_node_type_base(&ntype, GEO_NODE_CURVE_TO_POINTS, "Curve to Points", NODE_CLASS_GEOMETRY, 0); | geo_node_type_base( | ||||
| &ntype, GEO_NODE_LEGACY_CURVE_TO_POINTS, "Curve to Points", NODE_CLASS_GEOMETRY, 0); | |||||
| ntype.declare = blender::nodes::geo_node_curve_to_points_declare; | ntype.declare = blender::nodes::geo_node_curve_to_points_declare; | ||||
| ntype.geometry_node_execute = blender::nodes::geo_node_curve_to_points_exec; | ntype.geometry_node_execute = blender::nodes::geo_node_curve_to_points_exec; | ||||
| ntype.draw_buttons = blender::nodes::geo_node_curve_to_points_layout; | ntype.draw_buttons = blender::nodes::geo_node_curve_to_points_layout; | ||||
| node_type_storage( | node_type_storage( | ||||
| &ntype, "NodeGeometryCurveToPoints", node_free_standard_storage, node_copy_standard_storage); | &ntype, "NodeGeometryCurveToPoints", node_free_standard_storage, node_copy_standard_storage); | ||||
| node_type_init(&ntype, blender::nodes::geo_node_curve_to_points_init); | node_type_init(&ntype, blender::nodes::geo_node_curve_to_points_init); | ||||
| node_type_update(&ntype, blender::nodes::geo_node_curve_to_points_update); | node_type_update(&ntype, blender::nodes::geo_node_curve_to_points_update); | ||||
| nodeRegisterType(&ntype); | nodeRegisterType(&ntype); | ||||
| } | } | ||||