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

@@ -29,6 +29,15 @@ namespace BlendFile.DNA {
public int capture_items_num;
[DNAFieldAttribute(6, "int", "active_index", 4)]
public int active_index;
public NodeGeometryAttributeCapture() {
this.data_type = default;
this.domain = default;
this._pad = default;
this.next_identifier = default;
this.ptr_capture_items = default;
this.capture_items_num = default;
this.active_index = default;
}
public NodeGeometryAttributeCapture(sbyte data_type, sbyte domain, char[] _pad, int next_identifier, NodeGeometryAttributeCaptureItem ptr_capture_items, int capture_items_num, int active_index) {
this.data_type = data_type;
this.domain = domain;