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

@@ -43,6 +43,22 @@ namespace BlendFile.DNA {
public int segments_len;
[DNAFieldAttribute(13, "int", "segment_active_index", 4)]
public int segment_active_index;
public TimeGpencilModifierData() {
this.modifier = default;
this.ptr_material = default;
this.layername = default;
this.layer_pass = default;
this.flag = default;
this.offset = default;
this.frame_scale = default;
this.mode = default;
this.sfra = default;
this.efra = default;
this._pad = default;
this.ptr_segments = default;
this.segments_len = default;
this.segment_active_index = default;
}
public TimeGpencilModifierData(GpencilModifierData modifier, Material ptr_material, char[] layername, int layer_pass, int flag, int offset, float frame_scale, int mode, int sfra, int efra, char[] _pad, TimeGpencilModifierSegment ptr_segments, int segments_len, int segment_active_index) {
this.modifier = modifier;
this.ptr_material = ptr_material;