Generated new code and added initial data handling

This commit is contained in:
mm00
2025-01-27 19:24:50 +01:00
parent ebcc629feb
commit 146a3992ce
940 changed files with 11560 additions and 9 deletions

View File

@@ -43,6 +43,22 @@ namespace BlendFile.DNA {
public object ptr_ikparam;
[DNAFieldAttribute(13, "bAnimVizSettings", "avs", 32)]
public bAnimVizSettings avs;
public bPose() {
this.chanbase = default;
this.ptr_chanhash = default;
this.ptr_ptr_chan_array = default;
this.flag = default;
this._pad = default;
this.ctime = default;
this.stride_offset = default;
this.cyclic_offset = default;
this.agroups = default;
this.active_group = default;
this.iksolver = default;
this.ptr_ikdata = default;
this.ptr_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) {
this.chanbase = chanbase;
this.ptr_chanhash = ptr_chanhash;