48 lines
1.8 KiB
C#
48 lines
1.8 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 Strip {
|
|
public Strip ptr_next;
|
|
public Strip ptr_prev;
|
|
public int us;
|
|
public int done;
|
|
public int startstill;
|
|
public int endstill;
|
|
public StripElem ptr_stripdata;
|
|
public char[] dir = new System.Char[768];
|
|
public StripProxy ptr_proxy;
|
|
public StripCrop ptr_crop;
|
|
public StripTransform ptr_transform;
|
|
public StripColorBalance ptr_color_balance;
|
|
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;
|
|
}
|
|
}
|
|
}
|