//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using System; namespace BlendFile.DNA { using BlendFile; [DNAClassAttribute(68, "ActionStripKeyframeData", 4)] public class ActionStripKeyframeData { [DNAFieldAttribute(4, "uchar", 2, "_pad[4]", "System.Byte[]", false, 0)] public byte[] _pad = new System.Byte[4]; [DNAListAttribute(8, "ActionChannelBag", "**channelbag_array", 0, "ActionChannelBag", "channelbag_array_num", 1, 4)] public System.Collections.Generic.List channelbag_array; public ActionStripKeyframeData() { this._pad = default; this.channelbag_array = default; } public ActionStripKeyframeData(byte[] _pad, System.Collections.Generic.List channelbag_array) { this._pad = _pad; this.channelbag_array = channelbag_array; } } }