Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

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