85 lines
2.9 KiB
C#
85 lines
2.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 BlendFile.CompatTypes;
|
|
using System;
|
|
|
|
// Automatically generated by BlenderSharp at 01/22/2025 16:57:57
|
|
|
|
namespace BlendFile.DNA {
|
|
|
|
public class MovieClip {
|
|
public ID id;
|
|
public AnimData ptr_adt;
|
|
public DrawDataList drawdata;
|
|
public char[] name = new System.Char[1024];
|
|
public int source;
|
|
public int _pad;
|
|
public int[] lastsize = new System.Int32[2];
|
|
public float aspx;
|
|
public float aspy;
|
|
public ImBufAnim ptr_anim;
|
|
public MovieClipCache ptr_cache;
|
|
public bGPdata ptr_gpd;
|
|
public MovieTracking tracking;
|
|
public object ptr_tracking_context;
|
|
public MovieClipProxy proxy;
|
|
public int flag;
|
|
public int len;
|
|
public int start_frame;
|
|
public int frame_offset;
|
|
public ColorManagedColorspaceSettings colorspace_settings;
|
|
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;
|
|
}
|
|
}
|
|
}
|