Files
BlenderSharp/BlendFile/DNA/SpaceIpo.cs
2025-02-18 18:16:57 +01:00

104 lines
3.9 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(932, "SpaceIpo")]
public class SpaceIpo {
[DNAFieldAttribute(0, "SpaceLink", "*next", "SpaceLink", 40)]
public SpaceLink ptr_next;
[DNAFieldAttribute(1, "SpaceLink", "*prev", "SpaceLink", 40)]
public SpaceLink ptr_prev;
[DNAFieldAttribute(2, "ListBase", "regionbase", "ListBase", 16)]
public ListBase regionbase;
[DNAFieldAttribute(3, "char", "spacetype", "char", 1)]
public char spacetype;
[DNAFieldAttribute(4, "char", "link_flag", "char", 1)]
public char link_flag;
[DNAFieldAttribute(5, "char", "_pad0[6]", "System.Char[]", 1)]
public char[] _pad0 = new System.Char[6];
[DNAFieldAttribute(6, "View2D", "v2d", "View2D", 152)]
public View2D v2d;
[DNAFieldAttribute(7, "bDopeSheet", "*ads", "bDopeSheet", 112)]
public bDopeSheet ptr_ads;
[DNAFieldAttribute(8, "short", "mode", "short", 2)]
public short mode;
[DNAFieldAttribute(9, "short", "autosnap", "short", 2)]
public short autosnap;
[DNAFieldAttribute(10, "int", "flag", "int", 4)]
public int flag;
[DNAFieldAttribute(11, "float", "cursorTime", "float", 4)]
public float cursorTime;
[DNAFieldAttribute(12, "float", "cursorVal", "float", 4)]
public float cursorVal;
[DNAFieldAttribute(13, "int", "around", "int", 4)]
public int around;
[DNAFieldAttribute(14, "char", "_pad[4]", "System.Char[]", 1)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(15, "SpaceGraph_Runtime", "runtime", "SpaceGraph_Runtime", 24)]
public SpaceGraph_Runtime runtime;
public SpaceIpo() {
this.ptr_next = default;
this.ptr_prev = default;
this.regionbase = default;
this.spacetype = default;
this.link_flag = default;
this._pad0 = default;
this.v2d = default;
this.ptr_ads = default;
this.mode = default;
this.autosnap = default;
this.flag = default;
this.cursorTime = default;
this.cursorVal = default;
this.around = default;
this._pad = default;
this.runtime = default;
}
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;
}
}
}