57 lines
1.8 KiB
C#
57 lines
1.8 KiB
C#
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
|
|
namespace BlendFile.DNA {
|
|
|
|
public class SpaceIpo {
|
|
public SpaceLink ptr_next;
|
|
public SpaceLink ptr_prev;
|
|
public ListBase regionbase;
|
|
public char spacetype;
|
|
public char link_flag;
|
|
public char[] _pad0 = new System.Char[6];
|
|
public View2D v2d;
|
|
public bDopeSheet ptr_ads;
|
|
public short mode;
|
|
public short autosnap;
|
|
public int flag;
|
|
public float cursorTime;
|
|
public float cursorVal;
|
|
public int around;
|
|
public char[] _pad = new System.Char[4];
|
|
public SpaceGraph_Runtime runtime;
|
|
public SpaceIpo(
|
|
SpaceLink ptr_next,
|
|
SpaceLink ptr_prev,
|
|
ListBase regionbase,
|
|
char spacetype,
|
|
char link_flag,
|
|
char[] _pad0,
|
|
View2D v2d,
|
|
bDopeSheet ptr_ads,
|
|
short mode,
|
|
short autosnap,
|
|
int flag,
|
|
float cursorTime,
|
|
float cursorVal,
|
|
int around,
|
|
char[] _pad,
|
|
SpaceGraph_Runtime runtime) {
|
|
this.ptr_next = ptr_next;
|
|
this.ptr_prev = ptr_prev;
|
|
this.regionbase = regionbase;
|
|
this.spacetype = spacetype;
|
|
this.link_flag = link_flag;
|
|
this._pad0 = _pad0;
|
|
this.v2d = v2d;
|
|
this.ptr_ads = ptr_ads;
|
|
this.mode = mode;
|
|
this.autosnap = autosnap;
|
|
this.flag = flag;
|
|
this.cursorTime = cursorTime;
|
|
this.cursorVal = cursorVal;
|
|
this.around = around;
|
|
this._pad = _pad;
|
|
this.runtime = runtime;
|
|
}
|
|
}
|
|
}
|