Files
BlenderSharp/BlendFile/DNA/ActionChannelBag.cs
2025-03-12 19:02:40 +01:00

40 lines
1.6 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(63, "ActionChannelBag", 32)]
public class ActionChannelBag {
[DNAFieldAttribute(4, "int", 0, "slot_handle", "int", false, 0)]
public int slot_handle;
[DNAListAttribute(8, "bActionGroup", "**group_array", 2, "bActionGroup", "int", "group_array_num", 1, 8, 4)]
public System.Collections.Generic.List<bActionGroup> group_array;
[DNAArrayAttribute(4, "uchar", 3, "_pad[4]", "System.Byte[]", 4, 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.group_array = default;
this._pad = default;
this.fcurve_array = default;
}
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.group_array = group_array;
this._pad = _pad;
this.fcurve_array = fcurve_array;
}
}
}