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,21 +15,21 @@ namespace BlendFile.DNA {
[DNAClassAttribute(75, "bActionChannel", 120)]
public class bActionChannel {
[DNAFieldAttribute(0, "bActionChannel", "*next", "bActionChannel", 8, true)]
[DNAFieldAttribute(0, "bActionChannel", "*next", "bActionChannel", 8, true, 0)]
public bActionChannel ptr_next;
[DNAFieldAttribute(1, "bActionChannel", "*prev", "bActionChannel", 8, true)]
[DNAFieldAttribute(1, "bActionChannel", "*prev", "bActionChannel", 8, true, 8)]
public bActionChannel ptr_prev;
[DNAFieldAttribute(2, "bActionGroup", "*grp", "bActionGroup", 8, true)]
[DNAFieldAttribute(2, "bActionGroup", "*grp", "bActionGroup", 8, true, 16)]
public bActionGroup ptr_grp;
[DNAFieldAttribute(3, "Ipo", "*ipo", "Ipo", 8, true)]
[DNAFieldAttribute(3, "Ipo", "*ipo", "Ipo", 8, true, 24)]
public Ipo ptr_ipo;
[DNAFieldAttribute(4, "ListBase", "constraintChannels", "ListBase", 16, false)]
[DNAFieldAttribute(4, "ListBase", "constraintChannels", "ListBase", 16, false, 32)]
public ListBase constraintChannels;
[DNAFieldAttribute(5, "int", "flag", "int", 4, false)]
[DNAFieldAttribute(5, "int", "flag", "int", 4, false, 48)]
public int flag;
[DNAFieldAttribute(6, "char", "name[64]", "System.Char[]", 64, false)]
[DNAFieldAttribute(6, "char", "name[64]", "System.Char[]", 64, false, 52)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(7, "int", "temp", "int", 4, false)]
[DNAFieldAttribute(7, "int", "temp", "int", 4, false, 116)]
public int temp;
public bActionChannel() {
this.ptr_next = default;