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

@@ -13,61 +13,58 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(101, "AnimData", 248)]
[DNAClassAttribute(101, "AnimData", 240)]
public class AnimData {
[DNAFieldAttribute(0, "bAction", "*action", "bAction", 8, true, 0)]
public bAction ptr_action;
[DNAFieldAttribute(1, "int", "slot_handle", "int", 4, false, 8)]
[DNAFieldAttribute(8, "bAction", 0, "*action", "bAction", true, 0)]
public bAction action;
[DNAFieldAttribute(4, "int", 1, "slot_handle", "int", false, 8)]
public int slot_handle;
[DNAFieldAttribute(2, "char", "slot_name[66]", "System.Char[]", 66, false, 12)]
[DNAFieldAttribute(66, "char", 2, "slot_name[66]", "System.Char[]", false, 12)]
public char[] slot_name = new System.Char[66];
[DNAFieldAttribute(3, "uchar", "_pad0[2]", "System.Byte[]", 2, false, 78)]
[DNAFieldAttribute(2, "uchar", 3, "_pad0[2]", "System.Byte[]", false, 78)]
public byte[] _pad0 = new System.Byte[2];
[DNAFieldAttribute(4, "bAction", "*tmpact", "bAction", 8, true, 80)]
public bAction ptr_tmpact;
[DNAFieldAttribute(5, "int", "tmp_slot_handle", "int", 4, false, 88)]
[DNAFieldAttribute(8, "bAction", 4, "*tmpact", "bAction", true, 80)]
public bAction tmpact;
[DNAFieldAttribute(4, "int", 5, "tmp_slot_handle", "int", false, 88)]
public int tmp_slot_handle;
[DNAFieldAttribute(6, "char", "tmp_slot_name[66]", "System.Char[]", 66, false, 92)]
[DNAFieldAttribute(66, "char", 6, "tmp_slot_name[66]", "System.Char[]", false, 92)]
public char[] tmp_slot_name = new System.Char[66];
[DNAFieldAttribute(7, "uchar", "_pad1[2]", "System.Byte[]", 2, false, 158)]
[DNAFieldAttribute(2, "uchar", 7, "_pad1[2]", "System.Byte[]", false, 158)]
public byte[] _pad1 = new System.Byte[2];
[DNAFieldAttribute(8, "ListBase", "nla_tracks", "ListBase", 16, false, 160)]
[DNAFieldAttribute(16, "ListBase", 8, "nla_tracks", "ListBase", false, 160)]
public ListBase nla_tracks;
[DNAFieldAttribute(9, "NlaTrack", "*act_track", "NlaTrack", 8, true, 176)]
public NlaTrack ptr_act_track;
[DNAFieldAttribute(10, "NlaStrip", "*actstrip", "NlaStrip", 8, true, 184)]
public NlaStrip ptr_actstrip;
[DNAFieldAttribute(11, "ListBase", "drivers", "ListBase", 16, false, 192)]
[DNAFieldAttribute(8, "NlaTrack", 9, "*act_track", "NlaTrack", true, 176)]
public NlaTrack act_track;
[DNAFieldAttribute(8, "NlaStrip", 10, "*actstrip", "NlaStrip", true, 184)]
public NlaStrip actstrip;
[DNAFieldAttribute(16, "ListBase", 11, "drivers", "ListBase", false, 192)]
public ListBase drivers;
[DNAFieldAttribute(12, "ListBase", "overrides", "ListBase", 16, false, 208)]
[DNAFieldAttribute(16, "ListBase", 12, "overrides", "ListBase", false, 208)]
public ListBase overrides;
[DNAFieldAttribute(13, "FCurve", "**driver_array", "FCurve", 8, true, 224)]
public FCurve ptr_ptr_driver_array;
[DNAFieldAttribute(14, "int", "flag", "int", 4, false, 232)]
[DNAFieldAttribute(4, "int", 14, "flag", "int", false, 224)]
public int flag;
[DNAFieldAttribute(15, "short", "act_blendmode", "short", 2, false, 236)]
[DNAFieldAttribute(2, "short", 15, "act_blendmode", "short", false, 228)]
public short act_blendmode;
[DNAFieldAttribute(16, "short", "act_extendmode", "short", 2, false, 238)]
[DNAFieldAttribute(2, "short", 16, "act_extendmode", "short", false, 230)]
public short act_extendmode;
[DNAFieldAttribute(17, "float", "act_influence", "float", 4, false, 240)]
[DNAFieldAttribute(4, "float", 17, "act_influence", "float", false, 232)]
public float act_influence;
[DNAFieldAttribute(18, "uchar", "_pad2[4]", "System.Byte[]", 4, false, 244)]
[DNAFieldAttribute(4, "uchar", 18, "_pad2[4]", "System.Byte[]", false, 236)]
public byte[] _pad2 = new System.Byte[4];
public AnimData() {
this.ptr_action = default;
this.action = default;
this.slot_handle = default;
this.slot_name = default;
this._pad0 = default;
this.ptr_tmpact = default;
this.tmpact = default;
this.tmp_slot_handle = default;
this.tmp_slot_name = default;
this._pad1 = default;
this.nla_tracks = default;
this.ptr_act_track = default;
this.ptr_actstrip = default;
this.act_track = default;
this.actstrip = default;
this.drivers = default;
this.overrides = default;
this.ptr_ptr_driver_array = default;
this.flag = default;
this.act_blendmode = default;
this.act_extendmode = default;
@@ -75,39 +72,37 @@ namespace BlendFile.DNA {
this._pad2 = default;
}
public AnimData(
bAction ptr_action,
bAction action,
int slot_handle,
char[] slot_name,
byte[] _pad0,
bAction ptr_tmpact,
bAction tmpact,
int tmp_slot_handle,
char[] tmp_slot_name,
byte[] _pad1,
ListBase nla_tracks,
NlaTrack ptr_act_track,
NlaStrip ptr_actstrip,
NlaTrack act_track,
NlaStrip actstrip,
ListBase drivers,
ListBase overrides,
FCurve ptr_ptr_driver_array,
int flag,
short act_blendmode,
short act_extendmode,
float act_influence,
byte[] _pad2) {
this.ptr_action = ptr_action;
this.action = action;
this.slot_handle = slot_handle;
this.slot_name = slot_name;
this._pad0 = _pad0;
this.ptr_tmpact = ptr_tmpact;
this.tmpact = tmpact;
this.tmp_slot_handle = tmp_slot_handle;
this.tmp_slot_name = tmp_slot_name;
this._pad1 = _pad1;
this.nla_tracks = nla_tracks;
this.ptr_act_track = ptr_act_track;
this.ptr_actstrip = ptr_actstrip;
this.act_track = act_track;
this.actstrip = actstrip;
this.drivers = drivers;
this.overrides = overrides;
this.ptr_ptr_driver_array = ptr_ptr_driver_array;
this.flag = flag;
this.act_blendmode = act_blendmode;
this.act_extendmode = act_extendmode;