Files
BlenderSharp/BlendFile/DNA/ActionStrip.cs
2025-02-19 18:48:50 +01:00

52 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(77, "ActionStrip", 24)]
public struct ActionStrip {
[DNAFieldAttribute(0, "int8_t", "strip_type", "int8_t", 1, false)]
public sbyte strip_type;
[DNAFieldAttribute(1, "uchar", "_pad0[3]", "System.Byte[]", 3, false)]
public byte[] _pad0 = new System.Byte[3];
[DNAFieldAttribute(2, "int", "data_index", "int", 4, false)]
public int data_index;
[DNAFieldAttribute(3, "float", "frame_start", "float", 4, false)]
public float frame_start;
[DNAFieldAttribute(4, "float", "frame_end", "float", 4, false)]
public float frame_end;
[DNAFieldAttribute(5, "float", "frame_offset", "float", 4, false)]
public float frame_offset;
[DNAFieldAttribute(6, "uchar", "_pad1[4]", "System.Byte[]", 4, false)]
public byte[] _pad1 = new System.Byte[4];
public ActionStrip() {
this.strip_type = default;
this._pad0 = default;
this.data_index = default;
this.frame_start = default;
this.frame_end = default;
this.frame_offset = default;
this._pad1 = default;
}
public ActionStrip(sbyte strip_type, byte[] _pad0, int data_index, float frame_start, float frame_end, float frame_offset, byte[] _pad1) {
this.strip_type = strip_type;
this._pad0 = _pad0;
this.data_index = data_index;
this.frame_start = frame_start;
this.frame_end = frame_end;
this.frame_offset = frame_offset;
this._pad1 = _pad1;
}
}
}