Files
BlenderSharp/BlendFile/DNA/MovieClip.cs

129 lines
5.4 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(148, "MovieClip", 2568)]
public class MovieClip {
[DNAFieldAttribute(0, "ID", "id", "ID", 208, false, 0)]
public ID id;
[DNAFieldAttribute(1, "AnimData", "*adt", "AnimData", 8, true, 208)]
public AnimData ptr_adt;
[DNAFieldAttribute(2, "DrawDataList", "drawdata", "DrawDataList", 16, false, 216)]
public DrawDataList drawdata;
[DNAFieldAttribute(3, "char", "name[1024]", "System.Char[]", 1024, false, 232)]
public char[] name = new System.Char[1024];
[DNAFieldAttribute(4, "int", "source", "int", 4, false, 1256)]
public int source;
[DNAFieldAttribute(5, "int", "_pad", "int", 4, false, 1260)]
public int _pad;
[DNAFieldAttribute(6, "int", "lastsize[2]", "System.Int32[]", 8, false, 1264)]
public int[] lastsize = new System.Int32[2];
[DNAFieldAttribute(7, "float", "aspx", "float", 4, false, 1272)]
public float aspx;
[DNAFieldAttribute(8, "float", "aspy", "float", 4, false, 1276)]
public float aspy;
[DNAFieldAttribute(9, "ImBufAnim", "*anim", "ImBufAnim", 8, true, 1280)]
public ImBufAnim ptr_anim;
[DNAFieldAttribute(10, "MovieClipCache", "*cache", "MovieClipCache", 8, true, 1288)]
public MovieClipCache ptr_cache;
[DNAFieldAttribute(11, "bGPdata", "*gpd", "bGPdata", 8, true, 1296)]
public bGPdata ptr_gpd;
[DNAFieldAttribute(12, "MovieTracking", "tracking", "MovieTracking", 384, false, 1304)]
public MovieTracking tracking;
[DNAFieldAttribute(13, "void", "*tracking_context", "void", 8, true, 1688)]
public object ptr_tracking_context;
[DNAFieldAttribute(14, "MovieClipProxy", "proxy", "MovieClipProxy", 776, false, 1696)]
public MovieClipProxy proxy;
[DNAFieldAttribute(15, "int", "flag", "int", 4, false, 2472)]
public int flag;
[DNAFieldAttribute(16, "int", "len", "int", 4, false, 2476)]
public int len;
[DNAFieldAttribute(17, "int", "start_frame", "int", 4, false, 2480)]
public int start_frame;
[DNAFieldAttribute(18, "int", "frame_offset", "int", 4, false, 2484)]
public int frame_offset;
[DNAFieldAttribute(19, "ColorManagedColorspaceSettings", "colorspace_settings", "ColorManagedColorspaceSettings", 64, false, 2488)]
public ColorManagedColorspaceSettings colorspace_settings;
[DNAFieldAttribute(20, "MovieClip_Runtime", "runtime", "MovieClip_Runtime", 16, false, 2552)]
public MovieClip_Runtime runtime;
public MovieClip() {
this.id = default;
this.ptr_adt = default;
this.drawdata = default;
this.name = default;
this.source = default;
this._pad = default;
this.lastsize = default;
this.aspx = default;
this.aspy = default;
this.ptr_anim = default;
this.ptr_cache = default;
this.ptr_gpd = default;
this.tracking = default;
this.ptr_tracking_context = default;
this.proxy = default;
this.flag = default;
this.len = default;
this.start_frame = default;
this.frame_offset = default;
this.colorspace_settings = default;
this.runtime = default;
}
public MovieClip(
ID id,
AnimData ptr_adt,
DrawDataList drawdata,
char[] name,
int source,
int _pad,
int[] lastsize,
float aspx,
float aspy,
ImBufAnim ptr_anim,
MovieClipCache ptr_cache,
bGPdata ptr_gpd,
MovieTracking tracking,
object ptr_tracking_context,
MovieClipProxy proxy,
int flag,
int len,
int start_frame,
int frame_offset,
ColorManagedColorspaceSettings colorspace_settings,
MovieClip_Runtime runtime) {
this.id = id;
this.ptr_adt = ptr_adt;
this.drawdata = drawdata;
this.name = name;
this.source = source;
this._pad = _pad;
this.lastsize = lastsize;
this.aspx = aspx;
this.aspy = aspy;
this.ptr_anim = ptr_anim;
this.ptr_cache = ptr_cache;
this.ptr_gpd = ptr_gpd;
this.tracking = tracking;
this.ptr_tracking_context = ptr_tracking_context;
this.proxy = proxy;
this.flag = flag;
this.len = len;
this.start_frame = start_frame;
this.frame_offset = frame_offset;
this.colorspace_settings = colorspace_settings;
this.runtime = runtime;
}
}
}