Files
BlenderSharp/BlendFile/DNA/Strip.cs
2025-03-04 18:48:04 +01:00

76 lines
3.2 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", 904)]
public class Strip {
[DNAFieldAttribute(8, "Strip", 0, "*next", "Strip", true, 0)]
public Strip next;
[DNAFieldAttribute(8, "Strip", 1, "*prev", "Strip", true, 8)]
public Strip prev;
[DNAFieldAttribute(4, "int", 2, "us", "int", false, 16)]
public int us;
[DNAFieldAttribute(4, "int", 3, "done", "int", false, 20)]
public int done;
[DNAFieldAttribute(4, "int", 4, "startstill", "int", false, 24)]
public int startstill;
[DNAFieldAttribute(4, "int", 5, "endstill", "int", false, 28)]
public int endstill;
[DNAFieldAttribute(8, "StripElem", 6, "*stripdata", "StripElem", true, 32)]
public StripElem stripdata;
[DNAFieldAttribute(768, "char", 7, "dir[768]", "System.Char[]", false, 40)]
public char[] dir = new System.Char[768];
[DNAFieldAttribute(8, "StripProxy", 8, "*proxy", "StripProxy", true, 808)]
public StripProxy proxy;
[DNAFieldAttribute(8, "StripCrop", 9, "*crop", "StripCrop", true, 816)]
public StripCrop crop;
[DNAFieldAttribute(8, "StripTransform", 10, "*transform", "StripTransform", true, 824)]
public StripTransform transform;
[DNAFieldAttribute(8, "StripColorBalance", 11, "*color_balance", "StripColorBalance", true, 832)]
public StripColorBalance color_balance;
[DNAFieldAttribute(64, "ColorManagedColorspaceSettings", 12, "colorspace_settings", "ColorManagedColorspaceSettings", false, 840)]
public ColorManagedColorspaceSettings colorspace_settings;
public Strip() {
this.next = default;
this.prev = default;
this.us = default;
this.done = default;
this.startstill = default;
this.endstill = default;
this.stripdata = default;
this.dir = default;
this.proxy = default;
this.crop = default;
this.transform = default;
this.color_balance = default;
this.colorspace_settings = default;
}
public Strip(Strip next, Strip prev, int us, int done, int startstill, int endstill, StripElem stripdata, char[] dir, StripProxy proxy, StripCrop crop, StripTransform transform, StripColorBalance color_balance, ColorManagedColorspaceSettings colorspace_settings) {
this.next = next;
this.prev = prev;
this.us = us;
this.done = done;
this.startstill = startstill;
this.endstill = endstill;
this.stripdata = stripdata;
this.dir = dir;
this.proxy = proxy;
this.crop = crop;
this.transform = transform;
this.color_balance = color_balance;
this.colorspace_settings = colorspace_settings;
}
}
}