76 lines
3.3 KiB
C#
76 lines
3.3 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(882, "Strip")]
|
|
public class Strip {
|
|
[DNAFieldAttribute(0, "Strip", "*next", "Strip", 4, true)]
|
|
public Strip ptr_next;
|
|
[DNAFieldAttribute(1, "Strip", "*prev", "Strip", 4, true)]
|
|
public Strip ptr_prev;
|
|
[DNAFieldAttribute(2, "int", "us", "int", 4, false)]
|
|
public int us;
|
|
[DNAFieldAttribute(3, "int", "done", "int", 4, false)]
|
|
public int done;
|
|
[DNAFieldAttribute(4, "int", "startstill", "int", 4, false)]
|
|
public int startstill;
|
|
[DNAFieldAttribute(5, "int", "endstill", "int", 4, false)]
|
|
public int endstill;
|
|
[DNAFieldAttribute(6, "StripElem", "*stripdata", "StripElem", 4, true)]
|
|
public StripElem ptr_stripdata;
|
|
[DNAFieldAttribute(7, "char", "dir[768]", "System.Char[]", 768, false)]
|
|
public char[] dir = new System.Char[768];
|
|
[DNAFieldAttribute(8, "StripProxy", "*proxy", "StripProxy", 4, true)]
|
|
public StripProxy ptr_proxy;
|
|
[DNAFieldAttribute(9, "StripCrop", "*crop", "StripCrop", 4, true)]
|
|
public StripCrop ptr_crop;
|
|
[DNAFieldAttribute(10, "StripTransform", "*transform", "StripTransform", 4, true)]
|
|
public StripTransform ptr_transform;
|
|
[DNAFieldAttribute(11, "StripColorBalance", "*color_balance", "StripColorBalance", 4, true)]
|
|
public StripColorBalance ptr_color_balance;
|
|
[DNAFieldAttribute(12, "ColorManagedColorspaceSettings", "colorspace_settings", "ColorManagedColorspaceSettings", 64, false)]
|
|
public ColorManagedColorspaceSettings colorspace_settings;
|
|
public Strip() {
|
|
this.ptr_next = default;
|
|
this.ptr_prev = default;
|
|
this.us = default;
|
|
this.done = default;
|
|
this.startstill = default;
|
|
this.endstill = default;
|
|
this.ptr_stripdata = default;
|
|
this.dir = default;
|
|
this.ptr_proxy = default;
|
|
this.ptr_crop = default;
|
|
this.ptr_transform = default;
|
|
this.ptr_color_balance = default;
|
|
this.colorspace_settings = default;
|
|
}
|
|
public Strip(Strip ptr_next, Strip ptr_prev, int us, int done, int startstill, int endstill, StripElem ptr_stripdata, char[] dir, StripProxy ptr_proxy, StripCrop ptr_crop, StripTransform ptr_transform, StripColorBalance ptr_color_balance, ColorManagedColorspaceSettings colorspace_settings) {
|
|
this.ptr_next = ptr_next;
|
|
this.ptr_prev = ptr_prev;
|
|
this.us = us;
|
|
this.done = done;
|
|
this.startstill = startstill;
|
|
this.endstill = endstill;
|
|
this.ptr_stripdata = ptr_stripdata;
|
|
this.dir = dir;
|
|
this.ptr_proxy = ptr_proxy;
|
|
this.ptr_crop = ptr_crop;
|
|
this.ptr_transform = ptr_transform;
|
|
this.ptr_color_balance = ptr_color_balance;
|
|
this.colorspace_settings = colorspace_settings;
|
|
}
|
|
}
|
|
}
|