Regenerated codefiles
This commit is contained in:
@@ -15,20 +15,20 @@ namespace BlendFile.DNA {
|
||||
|
||||
[DNAClassAttribute(670, "CryptomatteLayer", 80)]
|
||||
public class CryptomatteLayer {
|
||||
[DNAFieldAttribute(0, "CryptomatteEntry", "*next", "CryptomatteEntry", 8, true, 0)]
|
||||
public CryptomatteEntry ptr_next;
|
||||
[DNAFieldAttribute(1, "CryptomatteEntry", "*prev", "CryptomatteEntry", 8, true, 8)]
|
||||
public CryptomatteEntry ptr_prev;
|
||||
[DNAFieldAttribute(2, "char", "name[64]", "System.Char[]", 64, false, 16)]
|
||||
[DNAFieldAttribute(8, "CryptomatteEntry", 0, "*next", "CryptomatteEntry", true, 0)]
|
||||
public CryptomatteEntry next;
|
||||
[DNAFieldAttribute(8, "CryptomatteEntry", 1, "*prev", "CryptomatteEntry", true, 8)]
|
||||
public CryptomatteEntry prev;
|
||||
[DNAFieldAttribute(64, "char", 2, "name[64]", "System.Char[]", false, 16)]
|
||||
public char[] name = new System.Char[64];
|
||||
public CryptomatteLayer() {
|
||||
this.ptr_next = default;
|
||||
this.ptr_prev = default;
|
||||
this.next = default;
|
||||
this.prev = default;
|
||||
this.name = default;
|
||||
}
|
||||
public CryptomatteLayer(CryptomatteEntry ptr_next, CryptomatteEntry ptr_prev, char[] name) {
|
||||
this.ptr_next = ptr_next;
|
||||
this.ptr_prev = ptr_prev;
|
||||
public CryptomatteLayer(CryptomatteEntry next, CryptomatteEntry prev, char[] name) {
|
||||
this.next = next;
|
||||
this.prev = prev;
|
||||
this.name = name;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user