Regenerated codefiles
This commit is contained in:
@@ -15,60 +15,60 @@ namespace BlendFile.DNA {
|
||||
|
||||
[DNAClassAttribute(882, "Strip", 904)]
|
||||
public class Strip {
|
||||
[DNAFieldAttribute(0, "Strip", "*next", "Strip", 8, true, 0)]
|
||||
public Strip ptr_next;
|
||||
[DNAFieldAttribute(1, "Strip", "*prev", "Strip", 8, true, 8)]
|
||||
public Strip ptr_prev;
|
||||
[DNAFieldAttribute(2, "int", "us", "int", 4, false, 16)]
|
||||
[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(3, "int", "done", "int", 4, false, 20)]
|
||||
[DNAFieldAttribute(4, "int", 3, "done", "int", false, 20)]
|
||||
public int done;
|
||||
[DNAFieldAttribute(4, "int", "startstill", "int", 4, false, 24)]
|
||||
[DNAFieldAttribute(4, "int", 4, "startstill", "int", false, 24)]
|
||||
public int startstill;
|
||||
[DNAFieldAttribute(5, "int", "endstill", "int", 4, false, 28)]
|
||||
[DNAFieldAttribute(4, "int", 5, "endstill", "int", false, 28)]
|
||||
public int endstill;
|
||||
[DNAFieldAttribute(6, "StripElem", "*stripdata", "StripElem", 8, true, 32)]
|
||||
public StripElem ptr_stripdata;
|
||||
[DNAFieldAttribute(7, "char", "dir[768]", "System.Char[]", 768, false, 40)]
|
||||
[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", "*proxy", "StripProxy", 8, true, 808)]
|
||||
public StripProxy ptr_proxy;
|
||||
[DNAFieldAttribute(9, "StripCrop", "*crop", "StripCrop", 8, true, 816)]
|
||||
public StripCrop ptr_crop;
|
||||
[DNAFieldAttribute(10, "StripTransform", "*transform", "StripTransform", 8, true, 824)]
|
||||
public StripTransform ptr_transform;
|
||||
[DNAFieldAttribute(11, "StripColorBalance", "*color_balance", "StripColorBalance", 8, true, 832)]
|
||||
public StripColorBalance ptr_color_balance;
|
||||
[DNAFieldAttribute(12, "ColorManagedColorspaceSettings", "colorspace_settings", "ColorManagedColorspaceSettings", 64, false, 840)]
|
||||
[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.ptr_next = default;
|
||||
this.ptr_prev = default;
|
||||
this.next = default;
|
||||
this.prev = default;
|
||||
this.us = default;
|
||||
this.done = default;
|
||||
this.startstill = default;
|
||||
this.endstill = default;
|
||||
this.ptr_stripdata = default;
|
||||
this.stripdata = default;
|
||||
this.dir = default;
|
||||
this.ptr_proxy = default;
|
||||
this.ptr_crop = default;
|
||||
this.ptr_transform = default;
|
||||
this.ptr_color_balance = default;
|
||||
this.proxy = default;
|
||||
this.crop = default;
|
||||
this.transform = default;
|
||||
this.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;
|
||||
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.ptr_stripdata = ptr_stripdata;
|
||||
this.stripdata = 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.proxy = proxy;
|
||||
this.crop = crop;
|
||||
this.transform = transform;
|
||||
this.color_balance = color_balance;
|
||||
this.colorspace_settings = colorspace_settings;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user