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,23 +15,23 @@ namespace BlendFile.DNA {
[DNAClassAttribute(829, "UnitSettings", 16)]
public struct UnitSettings {
[DNAFieldAttribute(0, "float", "scale_length", "float", 4, false)]
[DNAFieldAttribute(0, "float", "scale_length", "float", 4, false, 0)]
public float scale_length;
[DNAFieldAttribute(1, "char", "system", "char", 1, false)]
[DNAFieldAttribute(1, "char", "system", "char", 1, false, 4)]
public char system;
[DNAFieldAttribute(2, "char", "system_rotation", "char", 1, false)]
[DNAFieldAttribute(2, "char", "system_rotation", "char", 1, false, 5)]
public char system_rotation;
[DNAFieldAttribute(3, "short", "flag", "short", 2, false)]
[DNAFieldAttribute(3, "short", "flag", "short", 2, false, 6)]
public short flag;
[DNAFieldAttribute(4, "char", "length_unit", "char", 1, false)]
[DNAFieldAttribute(4, "char", "length_unit", "char", 1, false, 8)]
public char length_unit;
[DNAFieldAttribute(5, "char", "mass_unit", "char", 1, false)]
[DNAFieldAttribute(5, "char", "mass_unit", "char", 1, false, 9)]
public char mass_unit;
[DNAFieldAttribute(6, "char", "time_unit", "char", 1, false)]
[DNAFieldAttribute(6, "char", "time_unit", "char", 1, false, 10)]
public char time_unit;
[DNAFieldAttribute(7, "char", "temperature_unit", "char", 1, false)]
[DNAFieldAttribute(7, "char", "temperature_unit", "char", 1, false, 11)]
public char temperature_unit;
[DNAFieldAttribute(8, "char", "_pad[4]", "System.Char[]", 4, false)]
[DNAFieldAttribute(8, "char", "_pad[4]", "System.Char[]", 4, false, 12)]
public char[] _pad = new System.Char[4];
public UnitSettings() {
this.scale_length = default;