Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,15 +11,24 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class bActionChannel {
[DNAFieldAttribute(0, "bActionChannel", "*next", 120)]
public bActionChannel ptr_next;
[DNAFieldAttribute(1, "bActionChannel", "*prev", 120)]
public bActionChannel ptr_prev;
[DNAFieldAttribute(2, "bActionGroup", "*grp", 136)]
public bActionGroup ptr_grp;
[DNAFieldAttribute(3, "Ipo", "*ipo", 248)]
public Ipo ptr_ipo;
[DNAFieldAttribute(4, "ListBase", "constraintChannels", 16)]
public ListBase constraintChannels;
[DNAFieldAttribute(5, "int", "flag", 4)]
public int flag;
[DNAFieldAttribute(6, "char", "name[64]", 1)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(7, "int", "temp", 4)]
public int temp;
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;