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

@@ -27,6 +27,14 @@ namespace BlendFile.DNA {
public char[] _pad3 = new System.Char[1];
[DNAFieldAttribute(5, "float", "blend_factor", 4)]
public float blend_factor;
public MaskSpaceInfo() {
this.ptr_mask = default;
this.draw_flag = default;
this.draw_type = default;
this.overlay_mode = default;
this._pad3 = default;
this.blend_factor = default;
}
public MaskSpaceInfo(Mask ptr_mask, char draw_flag, char draw_type, char overlay_mode, char[] _pad3, float blend_factor) {
this.ptr_mask = ptr_mask;
this.draw_flag = draw_flag;