107 lines
3.6 KiB
C#
107 lines
3.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 {
|
|
|
|
public class NlaStrip {
|
|
public NlaStrip ptr_next;
|
|
public NlaStrip ptr_prev;
|
|
public ListBase strips;
|
|
public bAction ptr_act;
|
|
public int action_slot_handle;
|
|
public char[] action_slot_name = new System.Char[66];
|
|
public char[] _pad0 = new System.Char[2];
|
|
public ListBase fcurves;
|
|
public ListBase modifiers;
|
|
public char[] name = new System.Char[64];
|
|
public float influence;
|
|
public float strip_time;
|
|
public float start;
|
|
public float end;
|
|
public float actstart;
|
|
public float actend;
|
|
public float repeat;
|
|
public float scale;
|
|
public float blendin;
|
|
public float blendout;
|
|
public short blendmode;
|
|
public short extendmode;
|
|
public char[] _pad1 = new System.Char[2];
|
|
public short type;
|
|
public object ptr_speaker_handle;
|
|
public int flag;
|
|
public char[] _pad2 = new System.Char[4];
|
|
public NlaStrip ptr_orig_strip;
|
|
public object ptr__pad3;
|
|
public NlaStrip(
|
|
NlaStrip ptr_next,
|
|
NlaStrip ptr_prev,
|
|
ListBase strips,
|
|
bAction ptr_act,
|
|
int action_slot_handle,
|
|
char[] action_slot_name,
|
|
char[] _pad0,
|
|
ListBase fcurves,
|
|
ListBase modifiers,
|
|
char[] name,
|
|
float influence,
|
|
float strip_time,
|
|
float start,
|
|
float end,
|
|
float actstart,
|
|
float actend,
|
|
float repeat,
|
|
float scale,
|
|
float blendin,
|
|
float blendout,
|
|
short blendmode,
|
|
short extendmode,
|
|
char[] _pad1,
|
|
short type,
|
|
object ptr_speaker_handle,
|
|
int flag,
|
|
char[] _pad2,
|
|
NlaStrip ptr_orig_strip,
|
|
object ptr__pad3) {
|
|
this.ptr_next = ptr_next;
|
|
this.ptr_prev = ptr_prev;
|
|
this.strips = strips;
|
|
this.ptr_act = ptr_act;
|
|
this.action_slot_handle = action_slot_handle;
|
|
this.action_slot_name = action_slot_name;
|
|
this._pad0 = _pad0;
|
|
this.fcurves = fcurves;
|
|
this.modifiers = modifiers;
|
|
this.name = name;
|
|
this.influence = influence;
|
|
this.strip_time = strip_time;
|
|
this.start = start;
|
|
this.end = end;
|
|
this.actstart = actstart;
|
|
this.actend = actend;
|
|
this.repeat = repeat;
|
|
this.scale = scale;
|
|
this.blendin = blendin;
|
|
this.blendout = blendout;
|
|
this.blendmode = blendmode;
|
|
this.extendmode = extendmode;
|
|
this._pad1 = _pad1;
|
|
this.type = type;
|
|
this.ptr_speaker_handle = ptr_speaker_handle;
|
|
this.flag = flag;
|
|
this._pad2 = _pad2;
|
|
this.ptr_orig_strip = ptr_orig_strip;
|
|
this.ptr__pad3 = ptr__pad3;
|
|
}
|
|
}
|
|
}
|