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,40 +13,37 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(58, "bPose", 136)]
[DNAClassAttribute(58, "bPose", 128)]
public class bPose {
[DNAFieldAttribute(0, "ListBase", "chanbase", "ListBase", 16, false, 0)]
[DNAFieldAttribute(16, "ListBase", 0, "chanbase", "ListBase", false, 0)]
public ListBase chanbase;
[DNAFieldAttribute(1, "GHash", "*chanhash", "GHash", 8, true, 16)]
public GHash ptr_chanhash;
[DNAFieldAttribute(2, "bPoseChannel", "**chan_array", "bPoseChannel", 8, true, 24)]
public bPoseChannel ptr_ptr_chan_array;
[DNAFieldAttribute(3, "short", "flag", "short", 2, false, 32)]
[DNAFieldAttribute(8, "GHash", 1, "*chanhash", "GHash", true, 16)]
public GHash chanhash;
[DNAFieldAttribute(2, "short", 3, "flag", "short", false, 24)]
public short flag;
[DNAFieldAttribute(4, "char", "_pad[2]", "System.Char[]", 2, false, 34)]
[DNAFieldAttribute(2, "char", 4, "_pad[2]", "System.Char[]", false, 26)]
public char[] _pad = new System.Char[2];
[DNAFieldAttribute(5, "float", "ctime", "float", 4, false, 36)]
[DNAFieldAttribute(4, "float", 5, "ctime", "float", false, 28)]
public float ctime;
[DNAFieldAttribute(6, "float", "stride_offset[3]", "System.Single[]", 12, false, 40)]
[DNAFieldAttribute(12, "float", 6, "stride_offset[3]", "System.Single[]", false, 32)]
public float[] stride_offset = new System.Single[3];
[DNAFieldAttribute(7, "float", "cyclic_offset[3]", "System.Single[]", 12, false, 52)]
[DNAFieldAttribute(12, "float", 7, "cyclic_offset[3]", "System.Single[]", false, 44)]
public float[] cyclic_offset = new System.Single[3];
[DNAFieldAttribute(8, "ListBase", "agroups", "ListBase", 16, false, 64)]
[DNAFieldAttribute(16, "ListBase", 8, "agroups", "ListBase", false, 56)]
public ListBase agroups;
[DNAFieldAttribute(9, "int", "active_group", "int", 4, false, 80)]
[DNAFieldAttribute(4, "int", 9, "active_group", "int", false, 72)]
public int active_group;
[DNAFieldAttribute(10, "int", "iksolver", "int", 4, false, 84)]
[DNAFieldAttribute(4, "int", 10, "iksolver", "int", false, 76)]
public int iksolver;
[DNAFieldAttribute(11, "void", "*ikdata", "void", 8, true, 88)]
public object ptr_ikdata;
[DNAFieldAttribute(12, "void", "*ikparam", "void", 8, true, 96)]
public object ptr_ikparam;
[DNAFieldAttribute(13, "bAnimVizSettings", "avs", "bAnimVizSettings", 32, false, 104)]
[DNAFieldAttribute(8, "void", 11, "*ikdata", "void", true, 80)]
public object ikdata;
[DNAFieldAttribute(8, "void", 12, "*ikparam", "void", true, 88)]
public object ikparam;
[DNAFieldAttribute(32, "bAnimVizSettings", 13, "avs", "bAnimVizSettings", false, 96)]
public bAnimVizSettings avs;
public bPose() {
this.chanbase = default;
this.ptr_chanhash = default;
this.ptr_ptr_chan_array = default;
this.chanhash = default;
this.flag = default;
this._pad = default;
this.ctime = default;
@@ -55,14 +52,13 @@ namespace BlendFile.DNA {
this.agroups = default;
this.active_group = default;
this.iksolver = default;
this.ptr_ikdata = default;
this.ptr_ikparam = default;
this.ikdata = default;
this.ikparam = default;
this.avs = default;
}
public bPose(ListBase chanbase, GHash ptr_chanhash, bPoseChannel ptr_ptr_chan_array, short flag, char[] _pad, float ctime, float[] stride_offset, float[] cyclic_offset, ListBase agroups, int active_group, int iksolver, object ptr_ikdata, object ptr_ikparam, bAnimVizSettings avs) {
public bPose(ListBase chanbase, GHash chanhash, short flag, char[] _pad, float ctime, float[] stride_offset, float[] cyclic_offset, ListBase agroups, int active_group, int iksolver, object ikdata, object ikparam, bAnimVizSettings avs) {
this.chanbase = chanbase;
this.ptr_chanhash = ptr_chanhash;
this.ptr_ptr_chan_array = ptr_ptr_chan_array;
this.chanhash = chanhash;
this.flag = flag;
this._pad = _pad;
this.ctime = ctime;
@@ -71,8 +67,8 @@ namespace BlendFile.DNA {
this.agroups = agroups;
this.active_group = active_group;
this.iksolver = iksolver;
this.ptr_ikdata = ptr_ikdata;
this.ptr_ikparam = ptr_ikparam;
this.ikdata = ikdata;
this.ikparam = ikparam;
this.avs = avs;
}
}