Added memoryOffset value to DNAFieldAttribute, regenerated files.

This commit is contained in:
Samuele Lorefice
2025-02-20 21:00:55 +01:00
parent b171b65aa5
commit f383debd18
939 changed files with 9636 additions and 9605 deletions

View File

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