Files
BlenderSharp/BlendFile/DNA/MovieClip.cs
2025-01-22 20:24:55 +01:00

105 lines
4.0 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;
public class MovieClip {
[DNAFieldAttribute(0, "ID", "id", 208)]
public ID id;
[DNAFieldAttribute(1, "AnimData", "*adt", 248)]
public AnimData ptr_adt;
[DNAFieldAttribute(2, "DrawDataList", "drawdata", 16)]
public DrawDataList drawdata;
[DNAFieldAttribute(3, "char", "name[1024]", 1)]
public char[] name = new System.Char[1024];
[DNAFieldAttribute(4, "int", "source", 4)]
public int source;
[DNAFieldAttribute(5, "int", "_pad", 4)]
public int _pad;
[DNAFieldAttribute(6, "int", "lastsize[2]", 4)]
public int[] lastsize = new System.Int32[2];
[DNAFieldAttribute(7, "float", "aspx", 4)]
public float aspx;
[DNAFieldAttribute(8, "float", "aspy", 4)]
public float aspy;
[DNAFieldAttribute(9, "ImBufAnim", "*anim", 0)]
public ImBufAnim ptr_anim;
[DNAFieldAttribute(10, "MovieClipCache", "*cache", 0)]
public MovieClipCache ptr_cache;
[DNAFieldAttribute(11, "bGPdata", "*gpd", 616)]
public bGPdata ptr_gpd;
[DNAFieldAttribute(12, "MovieTracking", "tracking", 384)]
public MovieTracking tracking;
[DNAFieldAttribute(13, "void", "*tracking_context", 0)]
public object ptr_tracking_context;
[DNAFieldAttribute(14, "MovieClipProxy", "proxy", 776)]
public MovieClipProxy proxy;
[DNAFieldAttribute(15, "int", "flag", 4)]
public int flag;
[DNAFieldAttribute(16, "int", "len", 4)]
public int len;
[DNAFieldAttribute(17, "int", "start_frame", 4)]
public int start_frame;
[DNAFieldAttribute(18, "int", "frame_offset", 4)]
public int frame_offset;
[DNAFieldAttribute(19, "ColorManagedColorspaceSettings", "colorspace_settings", 64)]
public ColorManagedColorspaceSettings colorspace_settings;
[DNAFieldAttribute(20, "MovieClip_Runtime", "runtime", 16)]
public MovieClip_Runtime runtime;
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;
}
}
}