32 lines
1.2 KiB
C#
32 lines
1.2 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(68, "ActionStripKeyframeData", 16)]
|
|
public class ActionStripKeyframeData {
|
|
[DNAListAttribute(8, "ActionChannelBag", "**channelbag_array", 0, "ActionChannelBag", "int", "channelbag_array_num", 1, 0, 8)]
|
|
public System.Collections.Generic.List<ActionChannelBag> channelbag_array;
|
|
[DNAArrayAttribute(4, "uchar", 2, "_pad[4]", "System.Byte[]", 4, false, 12)]
|
|
public byte[] _pad = new System.Byte[4];
|
|
public ActionStripKeyframeData() {
|
|
this.channelbag_array = default;
|
|
this._pad = default;
|
|
}
|
|
public ActionStripKeyframeData(System.Collections.Generic.List<ActionChannelBag> channelbag_array, byte[] _pad) {
|
|
this.channelbag_array = channelbag_array;
|
|
this._pad = _pad;
|
|
}
|
|
}
|
|
}
|