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,29 +15,29 @@ namespace BlendFile.DNA {
[DNAClassAttribute(987, "uiFontStyle", 32)]
public struct uiFontStyle {
[DNAFieldAttribute(0, "short", "uifont_id", "short", 2, false)]
[DNAFieldAttribute(0, "short", "uifont_id", "short", 2, false, 0)]
public short uifont_id;
[DNAFieldAttribute(1, "char", "_pad1[2]", "System.Char[]", 2, false)]
[DNAFieldAttribute(1, "char", "_pad1[2]", "System.Char[]", 2, false, 2)]
public char[] _pad1 = new System.Char[2];
[DNAFieldAttribute(2, "float", "points", "float", 4, false)]
[DNAFieldAttribute(2, "float", "points", "float", 4, false, 4)]
public float points;
[DNAFieldAttribute(3, "short", "italic", "short", 2, false)]
[DNAFieldAttribute(3, "short", "italic", "short", 2, false, 8)]
public short italic;
[DNAFieldAttribute(4, "short", "bold", "short", 2, false)]
[DNAFieldAttribute(4, "short", "bold", "short", 2, false, 10)]
public short bold;
[DNAFieldAttribute(5, "short", "shadow", "short", 2, false)]
[DNAFieldAttribute(5, "short", "shadow", "short", 2, false, 12)]
public short shadow;
[DNAFieldAttribute(6, "short", "shadx", "short", 2, false)]
[DNAFieldAttribute(6, "short", "shadx", "short", 2, false, 14)]
public short shadx;
[DNAFieldAttribute(7, "short", "shady", "short", 2, false)]
[DNAFieldAttribute(7, "short", "shady", "short", 2, false, 16)]
public short shady;
[DNAFieldAttribute(8, "char", "_pad0[2]", "System.Char[]", 2, false)]
[DNAFieldAttribute(8, "char", "_pad0[2]", "System.Char[]", 2, false, 18)]
public char[] _pad0 = new System.Char[2];
[DNAFieldAttribute(9, "float", "shadowalpha", "float", 4, false)]
[DNAFieldAttribute(9, "float", "shadowalpha", "float", 4, false, 20)]
public float shadowalpha;
[DNAFieldAttribute(10, "float", "shadowcolor", "float", 4, false)]
[DNAFieldAttribute(10, "float", "shadowcolor", "float", 4, false, 24)]
public float shadowcolor;
[DNAFieldAttribute(11, "int", "character_weight", "int", 4, false)]
[DNAFieldAttribute(11, "int", "character_weight", "int", 4, false, 28)]
public int character_weight;
public uiFontStyle() {
this.uifont_id = default;