129 lines
5.3 KiB
C#
129 lines
5.3 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(65, "bAction")]
|
|
public class bAction {
|
|
[DNAFieldAttribute(0, "ID", "id", 208)]
|
|
public ID id;
|
|
[DNAFieldAttribute(1, "ActionLayer", "**layer_array", 88)]
|
|
public ActionLayer ptr_ptr_layer_array;
|
|
[DNAFieldAttribute(2, "int", "layer_array_num", 4)]
|
|
public int layer_array_num;
|
|
[DNAFieldAttribute(3, "int", "layer_active_index", 4)]
|
|
public int layer_active_index;
|
|
[DNAFieldAttribute(4, "ActionSlot", "**slot_array", 88)]
|
|
public ActionSlot ptr_ptr_slot_array;
|
|
[DNAFieldAttribute(5, "int", "slot_array_num", 4)]
|
|
public int slot_array_num;
|
|
[DNAFieldAttribute(6, "int", "last_slot_handle", 4)]
|
|
public int last_slot_handle;
|
|
[DNAFieldAttribute(7, "ActionStripKeyframeData", "**strip_keyframe_data_array", 16)]
|
|
public ActionStripKeyframeData ptr_ptr_strip_keyframe_data_array;
|
|
[DNAFieldAttribute(8, "int", "strip_keyframe_data_array_num", 4)]
|
|
public int strip_keyframe_data_array_num;
|
|
[DNAFieldAttribute(9, "char", "_pad0[4]", 1)]
|
|
public char[] _pad0 = new System.Char[4];
|
|
[DNAFieldAttribute(10, "ListBase", "curves", 16)]
|
|
public ListBase curves;
|
|
[DNAFieldAttribute(11, "ListBase", "chanbase", 16)]
|
|
public ListBase chanbase;
|
|
[DNAFieldAttribute(12, "ListBase", "groups", 16)]
|
|
public ListBase groups;
|
|
[DNAFieldAttribute(13, "ListBase", "markers", 16)]
|
|
public ListBase markers;
|
|
[DNAFieldAttribute(14, "int", "flag", 4)]
|
|
public int flag;
|
|
[DNAFieldAttribute(15, "int", "active_marker", 4)]
|
|
public int active_marker;
|
|
[DNAFieldAttribute(16, "int", "idroot", 4)]
|
|
public int idroot;
|
|
[DNAFieldAttribute(17, "char", "_pad1[4]", 1)]
|
|
public char[] _pad1 = new System.Char[4];
|
|
[DNAFieldAttribute(18, "float", "frame_start", 4)]
|
|
public float frame_start;
|
|
[DNAFieldAttribute(19, "float", "frame_end", 4)]
|
|
public float frame_end;
|
|
[DNAFieldAttribute(20, "PreviewImage", "*preview", 48)]
|
|
public PreviewImage ptr_preview;
|
|
public bAction() {
|
|
this.id = default;
|
|
this.ptr_ptr_layer_array = default;
|
|
this.layer_array_num = default;
|
|
this.layer_active_index = default;
|
|
this.ptr_ptr_slot_array = default;
|
|
this.slot_array_num = default;
|
|
this.last_slot_handle = default;
|
|
this.ptr_ptr_strip_keyframe_data_array = default;
|
|
this.strip_keyframe_data_array_num = default;
|
|
this._pad0 = default;
|
|
this.curves = default;
|
|
this.chanbase = default;
|
|
this.groups = default;
|
|
this.markers = default;
|
|
this.flag = default;
|
|
this.active_marker = default;
|
|
this.idroot = default;
|
|
this._pad1 = default;
|
|
this.frame_start = default;
|
|
this.frame_end = default;
|
|
this.ptr_preview = default;
|
|
}
|
|
public bAction(
|
|
ID id,
|
|
ActionLayer ptr_ptr_layer_array,
|
|
int layer_array_num,
|
|
int layer_active_index,
|
|
ActionSlot ptr_ptr_slot_array,
|
|
int slot_array_num,
|
|
int last_slot_handle,
|
|
ActionStripKeyframeData ptr_ptr_strip_keyframe_data_array,
|
|
int strip_keyframe_data_array_num,
|
|
char[] _pad0,
|
|
ListBase curves,
|
|
ListBase chanbase,
|
|
ListBase groups,
|
|
ListBase markers,
|
|
int flag,
|
|
int active_marker,
|
|
int idroot,
|
|
char[] _pad1,
|
|
float frame_start,
|
|
float frame_end,
|
|
PreviewImage ptr_preview) {
|
|
this.id = id;
|
|
this.ptr_ptr_layer_array = ptr_ptr_layer_array;
|
|
this.layer_array_num = layer_array_num;
|
|
this.layer_active_index = layer_active_index;
|
|
this.ptr_ptr_slot_array = ptr_ptr_slot_array;
|
|
this.slot_array_num = slot_array_num;
|
|
this.last_slot_handle = last_slot_handle;
|
|
this.ptr_ptr_strip_keyframe_data_array = ptr_ptr_strip_keyframe_data_array;
|
|
this.strip_keyframe_data_array_num = strip_keyframe_data_array_num;
|
|
this._pad0 = _pad0;
|
|
this.curves = curves;
|
|
this.chanbase = chanbase;
|
|
this.groups = groups;
|
|
this.markers = markers;
|
|
this.flag = flag;
|
|
this.active_marker = active_marker;
|
|
this.idroot = idroot;
|
|
this._pad1 = _pad1;
|
|
this.frame_start = frame_start;
|
|
this.frame_end = frame_end;
|
|
this.ptr_preview = ptr_preview;
|
|
}
|
|
}
|
|
}
|