48 lines
2.0 KiB
C#
48 lines
2.0 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")]
|
|
public class ActionChannelBag {
|
|
[DNAFieldAttribute(0, "int", "slot_handle", "int", 4, false)]
|
|
public int slot_handle;
|
|
[DNAFieldAttribute(1, "int", "group_array_num", "int", 4, false)]
|
|
public int group_array_num;
|
|
[DNAFieldAttribute(2, "bActionGroup", "**group_array", "bActionGroup", 4, true)]
|
|
public bActionGroup ptr_ptr_group_array;
|
|
[DNAFieldAttribute(3, "uchar", "_pad[4]", "System.Byte[]", 4, false)]
|
|
public byte[] _pad = new System.Byte[4];
|
|
[DNAFieldAttribute(4, "int", "fcurve_array_num", "int", 4, false)]
|
|
public int fcurve_array_num;
|
|
[DNAFieldAttribute(5, "FCurve", "**fcurve_array", "FCurve", 4, true)]
|
|
public FCurve ptr_ptr_fcurve_array;
|
|
public ActionChannelBag() {
|
|
this.slot_handle = default;
|
|
this.group_array_num = default;
|
|
this.ptr_ptr_group_array = default;
|
|
this._pad = default;
|
|
this.fcurve_array_num = default;
|
|
this.ptr_ptr_fcurve_array = default;
|
|
}
|
|
public ActionChannelBag(int slot_handle, int group_array_num, bActionGroup ptr_ptr_group_array, byte[] _pad, int fcurve_array_num, FCurve ptr_ptr_fcurve_array) {
|
|
this.slot_handle = slot_handle;
|
|
this.group_array_num = group_array_num;
|
|
this.ptr_ptr_group_array = ptr_ptr_group_array;
|
|
this._pad = _pad;
|
|
this.fcurve_array_num = fcurve_array_num;
|
|
this.ptr_ptr_fcurve_array = ptr_ptr_fcurve_array;
|
|
}
|
|
}
|
|
}
|