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(112, "bUUID", 16)]
public struct bUUID {
[DNAFieldAttribute(0, "int", "time_low", "int", 4, false)]
[DNAFieldAttribute(0, "int", "time_low", "int", 4, false, 0)]
public int time_low;
[DNAFieldAttribute(1, "ushort", "time_mid", "ushort", 2, false)]
[DNAFieldAttribute(1, "ushort", "time_mid", "ushort", 2, false, 4)]
public ushort time_mid;
[DNAFieldAttribute(2, "ushort", "time_hi_and_version", "ushort", 2, false)]
[DNAFieldAttribute(2, "ushort", "time_hi_and_version", "ushort", 2, false, 6)]
public ushort time_hi_and_version;
[DNAFieldAttribute(3, "uchar", "clock_seq_hi_and_reserved", "uchar", 1, false)]
[DNAFieldAttribute(3, "uchar", "clock_seq_hi_and_reserved", "uchar", 1, false, 8)]
public byte clock_seq_hi_and_reserved;
[DNAFieldAttribute(4, "uchar", "clock_seq_low", "uchar", 1, false)]
[DNAFieldAttribute(4, "uchar", "clock_seq_low", "uchar", 1, false, 9)]
public byte clock_seq_low;
[DNAFieldAttribute(5, "uchar", "node[6]", "System.Byte[]", 6, false)]
[DNAFieldAttribute(5, "uchar", "node[6]", "System.Byte[]", 6, false, 10)]
public byte[] node = new System.Byte[6];
public bUUID() {
this.time_low = default;