Regenerated codefiles
This commit is contained in:
@@ -15,33 +15,33 @@ namespace BlendFile.DNA {
|
||||
|
||||
[DNAClassAttribute(340, "Base", 48)]
|
||||
public class Base {
|
||||
[DNAFieldAttribute(0, "Base", "*next", "Base", 8, true, 0)]
|
||||
public Base ptr_next;
|
||||
[DNAFieldAttribute(1, "Base", "*prev", "Base", 8, true, 8)]
|
||||
public Base ptr_prev;
|
||||
[DNAFieldAttribute(2, "Object", "*object", "Object", 8, true, 16)]
|
||||
public Object ptr_object;
|
||||
[DNAFieldAttribute(3, "Base", "*base_orig", "Base", 8, true, 24)]
|
||||
public Base ptr_base_orig;
|
||||
[DNAFieldAttribute(4, "int", "lay", "int", 4, false, 32)]
|
||||
[DNAFieldAttribute(8, "Base", 0, "*next", "Base", true, 0)]
|
||||
public Base next;
|
||||
[DNAFieldAttribute(8, "Base", 1, "*prev", "Base", true, 8)]
|
||||
public Base prev;
|
||||
[DNAFieldAttribute(8, "Object", 2, "*object", "Object", true, 16)]
|
||||
public Object @object;
|
||||
[DNAFieldAttribute(8, "Base", 3, "*base_orig", "Base", true, 24)]
|
||||
public Base base_orig;
|
||||
[DNAFieldAttribute(4, "int", 4, "lay", "int", false, 32)]
|
||||
public int lay;
|
||||
[DNAFieldAttribute(5, "short", "flag", "short", 2, false, 36)]
|
||||
[DNAFieldAttribute(2, "short", 5, "flag", "short", false, 36)]
|
||||
public short flag;
|
||||
[DNAFieldAttribute(6, "short", "flag_from_collection", "short", 2, false, 38)]
|
||||
[DNAFieldAttribute(2, "short", 6, "flag_from_collection", "short", false, 38)]
|
||||
public short flag_from_collection;
|
||||
[DNAFieldAttribute(7, "short", "flag_legacy", "short", 2, false, 40)]
|
||||
[DNAFieldAttribute(2, "short", 7, "flag_legacy", "short", false, 40)]
|
||||
public short flag_legacy;
|
||||
[DNAFieldAttribute(8, "short", "local_view_bits", "short", 2, false, 42)]
|
||||
[DNAFieldAttribute(2, "short", 8, "local_view_bits", "short", false, 42)]
|
||||
public short local_view_bits;
|
||||
[DNAFieldAttribute(9, "short", "local_collections_bits", "short", 2, false, 44)]
|
||||
[DNAFieldAttribute(2, "short", 9, "local_collections_bits", "short", false, 44)]
|
||||
public short local_collections_bits;
|
||||
[DNAFieldAttribute(10, "char", "_pad1[2]", "System.Char[]", 2, false, 46)]
|
||||
[DNAFieldAttribute(2, "char", 10, "_pad1[2]", "System.Char[]", false, 46)]
|
||||
public char[] _pad1 = new System.Char[2];
|
||||
public Base() {
|
||||
this.ptr_next = default;
|
||||
this.ptr_prev = default;
|
||||
this.ptr_object = default;
|
||||
this.ptr_base_orig = default;
|
||||
this.next = default;
|
||||
this.prev = default;
|
||||
this.@object = default;
|
||||
this.base_orig = default;
|
||||
this.lay = default;
|
||||
this.flag = default;
|
||||
this.flag_from_collection = default;
|
||||
@@ -50,11 +50,11 @@ namespace BlendFile.DNA {
|
||||
this.local_collections_bits = default;
|
||||
this._pad1 = default;
|
||||
}
|
||||
public Base(Base ptr_next, Base ptr_prev, Object ptr_object, Base ptr_base_orig, int lay, short flag, short flag_from_collection, short flag_legacy, short local_view_bits, short local_collections_bits, char[] _pad1) {
|
||||
this.ptr_next = ptr_next;
|
||||
this.ptr_prev = ptr_prev;
|
||||
this.ptr_object = ptr_object;
|
||||
this.ptr_base_orig = ptr_base_orig;
|
||||
public Base(Base next, Base prev, Object @object, Base base_orig, int lay, short flag, short flag_from_collection, short flag_legacy, short local_view_bits, short local_collections_bits, char[] _pad1) {
|
||||
this.next = next;
|
||||
this.prev = prev;
|
||||
this.@object = @object;
|
||||
this.base_orig = base_orig;
|
||||
this.lay = lay;
|
||||
this.flag = flag;
|
||||
this.flag_from_collection = flag_from_collection;
|
||||
|
||||
Reference in New Issue
Block a user