Regenerated code files

This commit is contained in:
Samuele Lorefice
2025-03-07 19:13:29 +01:00
parent 26add1559f
commit 73e98f5c5d
10 changed files with 163 additions and 163 deletions

View File

@@ -17,22 +17,22 @@ namespace BlendFile.DNA {
public class ActionChannelBag {
[DNAFieldAttribute(4, "int", 0, "slot_handle", "int", false, 0)]
public int slot_handle;
[DNAFieldAttribute(4, "uchar", 3, "_pad[4]", "System.Byte[]", false, 4)]
public byte[] _pad = new System.Byte[4];
[DNAListAttribute(8, "bActionGroup", "**group_array", 2, "bActionGroup", "int", "group_array_num", 1, 12, 8)]
[DNAListAttribute(8, "bActionGroup", "**group_array", 2, "bActionGroup", "int", "group_array_num", 1, 8, 4)]
public System.Collections.Generic.List<bActionGroup> group_array;
[DNAFieldAttribute(4, "uchar", 3, "_pad[4]", "System.Byte[]", false, 16)]
public byte[] _pad = new System.Byte[4];
[DNAListAttribute(8, "FCurve", "**fcurve_array", 5, "FCurve", "int", "fcurve_array_num", 4, 24, 20)]
public System.Collections.Generic.List<FCurve> fcurve_array;
public ActionChannelBag() {
this.slot_handle = default;
this._pad = default;
this.group_array = default;
this._pad = default;
this.fcurve_array = default;
}
public ActionChannelBag(int slot_handle, byte[] _pad, System.Collections.Generic.List<bActionGroup> group_array, System.Collections.Generic.List<FCurve> fcurve_array) {
public ActionChannelBag(int slot_handle, System.Collections.Generic.List<bActionGroup> group_array, byte[] _pad, System.Collections.Generic.List<FCurve> fcurve_array) {
this.slot_handle = slot_handle;
this._pad = _pad;
this.group_array = group_array;
this._pad = _pad;
this.fcurve_array = fcurve_array;
}
}