Generated new code and added initial data handling

This commit is contained in:
mm00
2025-01-27 19:24:50 +01:00
parent ebcc629feb
commit 146a3992ce
940 changed files with 11560 additions and 9 deletions

View File

@@ -33,6 +33,17 @@ namespace BlendFile.DNA {
public int attributes_active_index;
[DNAFieldAttribute(8, "CurvesGeometryRuntimeHandle", "*runtime", 0)]
public CurvesGeometryRuntimeHandle ptr_runtime;
public CurvesGeometry() {
this.ptr_curve_offsets = default;
this.point_data = default;
this.curve_data = default;
this.point_size = default;
this.curve_size = default;
this.vertex_group_names = default;
this.vertex_group_active_index = default;
this.attributes_active_index = default;
this.ptr_runtime = default;
}
public CurvesGeometry(int ptr_curve_offsets, CustomData point_data, CustomData curve_data, int point_size, int curve_size, ListBase vertex_group_names, int vertex_group_active_index, int attributes_active_index, CurvesGeometryRuntimeHandle ptr_runtime) {
this.ptr_curve_offsets = ptr_curve_offsets;
this.point_data = point_data;