Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

@@ -15,28 +15,28 @@ namespace BlendFile.DNA {
[DNAClassAttribute(939, "MaskSpaceInfo", 16)]
public class MaskSpaceInfo {
[DNAFieldAttribute(0, "Mask", "*mask", "Mask", 8, true, 0)]
public Mask ptr_mask;
[DNAFieldAttribute(1, "char", "draw_flag", "char", 1, false, 8)]
[DNAFieldAttribute(8, "Mask", 0, "*mask", "Mask", true, 0)]
public Mask mask;
[DNAFieldAttribute(1, "char", 1, "draw_flag", "char", false, 8)]
public char draw_flag;
[DNAFieldAttribute(2, "char", "draw_type", "char", 1, false, 9)]
[DNAFieldAttribute(1, "char", 2, "draw_type", "char", false, 9)]
public char draw_type;
[DNAFieldAttribute(3, "char", "overlay_mode", "char", 1, false, 10)]
[DNAFieldAttribute(1, "char", 3, "overlay_mode", "char", false, 10)]
public char overlay_mode;
[DNAFieldAttribute(4, "char", "_pad3[1]", "System.Char[]", 1, false, 11)]
[DNAFieldAttribute(1, "char", 4, "_pad3[1]", "System.Char[]", false, 11)]
public char[] _pad3 = new System.Char[1];
[DNAFieldAttribute(5, "float", "blend_factor", "float", 4, false, 12)]
[DNAFieldAttribute(4, "float", 5, "blend_factor", "float", false, 12)]
public float blend_factor;
public MaskSpaceInfo() {
this.ptr_mask = default;
this.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;
public MaskSpaceInfo(Mask mask, char draw_flag, char draw_type, char overlay_mode, char[] _pad3, float blend_factor) {
this.mask = mask;
this.draw_flag = draw_flag;
this.draw_type = draw_type;
this.overlay_mode = overlay_mode;