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,27 +15,27 @@ namespace BlendFile.DNA {
[DNAClassAttribute(989, "uiWidgetColors", 40)]
public struct uiWidgetColors {
[DNAFieldAttribute(0, "char", "outline[4]", "System.Char[]", 4, false)]
[DNAFieldAttribute(0, "char", "outline[4]", "System.Char[]", 4, false, 0)]
public char[] outline = new System.Char[4];
[DNAFieldAttribute(1, "char", "inner[4]", "System.Char[]", 4, false)]
[DNAFieldAttribute(1, "char", "inner[4]", "System.Char[]", 4, false, 4)]
public char[] inner = new System.Char[4];
[DNAFieldAttribute(2, "char", "inner_sel[4]", "System.Char[]", 4, false)]
[DNAFieldAttribute(2, "char", "inner_sel[4]", "System.Char[]", 4, false, 8)]
public char[] inner_sel = new System.Char[4];
[DNAFieldAttribute(3, "char", "item[4]", "System.Char[]", 4, false)]
[DNAFieldAttribute(3, "char", "item[4]", "System.Char[]", 4, false, 12)]
public char[] item = new System.Char[4];
[DNAFieldAttribute(4, "char", "text[4]", "System.Char[]", 4, false)]
[DNAFieldAttribute(4, "char", "text[4]", "System.Char[]", 4, false, 16)]
public char[] text = new System.Char[4];
[DNAFieldAttribute(5, "char", "text_sel[4]", "System.Char[]", 4, false)]
[DNAFieldAttribute(5, "char", "text_sel[4]", "System.Char[]", 4, false, 20)]
public char[] text_sel = new System.Char[4];
[DNAFieldAttribute(6, "char", "shaded", "char", 1, false)]
[DNAFieldAttribute(6, "char", "shaded", "char", 1, false, 24)]
public char shaded;
[DNAFieldAttribute(7, "char", "_pad0[7]", "System.Char[]", 7, false)]
[DNAFieldAttribute(7, "char", "_pad0[7]", "System.Char[]", 7, false, 25)]
public char[] _pad0 = new System.Char[7];
[DNAFieldAttribute(8, "short", "shadetop", "short", 2, false)]
[DNAFieldAttribute(8, "short", "shadetop", "short", 2, false, 32)]
public short shadetop;
[DNAFieldAttribute(9, "short", "shadedown", "short", 2, false)]
[DNAFieldAttribute(9, "short", "shadedown", "short", 2, false, 34)]
public short shadedown;
[DNAFieldAttribute(10, "float", "roundness", "float", 4, false)]
[DNAFieldAttribute(10, "float", "roundness", "float", 4, false, 36)]
public float roundness;
public uiWidgetColors() {
this.outline = default;