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

@@ -35,6 +35,18 @@ namespace BlendFile.DNA {
public int segments_len;
[DNAFieldAttribute(9, "int", "segment_active_index", 4)]
public int segment_active_index;
public DashGpencilModifierData() {
this.modifier = default;
this.ptr_material = default;
this.layername = default;
this.pass_index = default;
this.flag = default;
this.layer_pass = default;
this.dash_offset = default;
this.ptr_segments = default;
this.segments_len = default;
this.segment_active_index = default;
}
public DashGpencilModifierData(GpencilModifierData modifier, Material ptr_material, char[] layername, int pass_index, int flag, int layer_pass, int dash_offset, DashGpencilModifierSegment ptr_segments, int segments_len, int segment_active_index) {
this.modifier = modifier;
this.ptr_material = ptr_material;