Files
BlenderSharp/BlendFile/DNA/ActionStripKeyframeData.cs
2025-03-04 18:48:04 +01:00

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", 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<ActionChannelBag> channelbag_array;
public ActionStripKeyframeData() {
this._pad = default;
this.channelbag_array = default;
}
public ActionStripKeyframeData(byte[] _pad, System.Collections.Generic.List<ActionChannelBag> channelbag_array) {
this._pad = _pad;
this.channelbag_array = channelbag_array;
}
}
}