Generated new code and added initial data handling

This commit is contained in:
mm00
2025-01-27 19:24:50 +01:00
parent ebcc629feb
commit 146a3992ce
940 changed files with 11560 additions and 9 deletions

View File

@@ -27,6 +27,14 @@ namespace BlendFile.DNA {
public byte clock_seq_low;
[DNAFieldAttribute(5, "uchar", "node[6]", 1)]
public byte[] node = new System.Byte[6];
public bUUID() {
this.time_low = default;
this.time_mid = default;
this.time_hi_and_version = default;
this.clock_seq_hi_and_reserved = default;
this.clock_seq_low = default;
this.node = default;
}
public bUUID(int time_low, ushort time_mid, ushort time_hi_and_version, byte clock_seq_hi_and_reserved, byte clock_seq_low, byte[] node) {
this.time_low = time_low;
this.time_mid = time_mid;