- Added auto generation of DNAClass attributes on file generation - Regenerated all files
61 lines
2.6 KiB
C#
61 lines
2.6 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", 904)]
|
|
public Strip ptr_next;
|
|
[DNAFieldAttribute(1, "Strip", "*prev", 904)]
|
|
public Strip ptr_prev;
|
|
[DNAFieldAttribute(2, "int", "us", 4)]
|
|
public int us;
|
|
[DNAFieldAttribute(3, "int", "done", 4)]
|
|
public int done;
|
|
[DNAFieldAttribute(4, "int", "startstill", 4)]
|
|
public int startstill;
|
|
[DNAFieldAttribute(5, "int", "endstill", 4)]
|
|
public int endstill;
|
|
[DNAFieldAttribute(6, "StripElem", "*stripdata", 268)]
|
|
public StripElem ptr_stripdata;
|
|
[DNAFieldAttribute(7, "char", "dir[768]", 1)]
|
|
public char[] dir = new System.Char[768];
|
|
[DNAFieldAttribute(8, "StripProxy", "*proxy", 1048)]
|
|
public StripProxy ptr_proxy;
|
|
[DNAFieldAttribute(9, "StripCrop", "*crop", 16)]
|
|
public StripCrop ptr_crop;
|
|
[DNAFieldAttribute(10, "StripTransform", "*transform", 32)]
|
|
public StripTransform ptr_transform;
|
|
[DNAFieldAttribute(11, "StripColorBalance", "*color_balance", 84)]
|
|
public StripColorBalance ptr_color_balance;
|
|
[DNAFieldAttribute(12, "ColorManagedColorspaceSettings", "colorspace_settings", 64)]
|
|
public ColorManagedColorspaceSettings colorspace_settings;
|
|
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;
|
|
}
|
|
}
|
|
}
|