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(480, "MultiresModifierData", 136)]
public struct MultiresModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120, false)]
[DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120, false, 0)]
public ModifierData modifier;
[DNAFieldAttribute(1, "char", "lvl", "char", 1, false)]
[DNAFieldAttribute(1, "char", "lvl", "char", 1, false, 120)]
public char lvl;
[DNAFieldAttribute(2, "char", "sculptlvl", "char", 1, false)]
[DNAFieldAttribute(2, "char", "sculptlvl", "char", 1, false, 121)]
public char sculptlvl;
[DNAFieldAttribute(3, "char", "renderlvl", "char", 1, false)]
[DNAFieldAttribute(3, "char", "renderlvl", "char", 1, false, 122)]
public char renderlvl;
[DNAFieldAttribute(4, "char", "totlvl", "char", 1, false)]
[DNAFieldAttribute(4, "char", "totlvl", "char", 1, false, 123)]
public char totlvl;
[DNAFieldAttribute(5, "char", "simple", "char", 1, false)]
[DNAFieldAttribute(5, "char", "simple", "char", 1, false, 124)]
public char simple;
[DNAFieldAttribute(6, "char", "flags", "char", 1, false)]
[DNAFieldAttribute(6, "char", "flags", "char", 1, false, 125)]
public char flags;
[DNAFieldAttribute(7, "char", "_pad[2]", "System.Char[]", 2, false)]
[DNAFieldAttribute(7, "char", "_pad[2]", "System.Char[]", 2, false, 126)]
public char[] _pad = new System.Char[2];
[DNAFieldAttribute(8, "short", "quality", "short", 2, false)]
[DNAFieldAttribute(8, "short", "quality", "short", 2, false, 128)]
public short quality;
[DNAFieldAttribute(9, "short", "uv_smooth", "short", 2, false)]
[DNAFieldAttribute(9, "short", "uv_smooth", "short", 2, false, 130)]
public short uv_smooth;
[DNAFieldAttribute(10, "short", "boundary_smooth", "short", 2, false)]
[DNAFieldAttribute(10, "short", "boundary_smooth", "short", 2, false, 132)]
public short boundary_smooth;
[DNAFieldAttribute(11, "char", "_pad2[2]", "System.Char[]", 2, false)]
[DNAFieldAttribute(11, "char", "_pad2[2]", "System.Char[]", 2, false, 134)]
public char[] _pad2 = new System.Char[2];
public MultiresModifierData() {
this.modifier = default;