- Added auto generation of DNAClass attributes on file generation - Regenerated all files
43 lines
1.6 KiB
C#
43 lines
1.6 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")]
|
|
public struct ActionStrip {
|
|
[DNAFieldAttribute(0, "int8_t", "strip_type", 1)]
|
|
public sbyte strip_type;
|
|
[DNAFieldAttribute(1, "uchar", "_pad0[3]", 1)]
|
|
public byte[] _pad0 = new System.Byte[3];
|
|
[DNAFieldAttribute(2, "int", "data_index", 4)]
|
|
public int data_index;
|
|
[DNAFieldAttribute(3, "float", "frame_start", 4)]
|
|
public float frame_start;
|
|
[DNAFieldAttribute(4, "float", "frame_end", 4)]
|
|
public float frame_end;
|
|
[DNAFieldAttribute(5, "float", "frame_offset", 4)]
|
|
public float frame_offset;
|
|
[DNAFieldAttribute(6, "uchar", "_pad1[4]", 1)]
|
|
public byte[] _pad1 = new System.Byte[4];
|
|
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;
|
|
}
|
|
}
|
|
}
|