Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

@@ -15,30 +15,30 @@ namespace BlendFile.DNA {
[DNAClassAttribute(221, "CustomDataLayer", 120)]
public class CustomDataLayer {
[DNAFieldAttribute(0, "int", "type", "int", 4, false, 0)]
[DNAFieldAttribute(4, "int", 0, "type", "int", false, 0)]
public int type;
[DNAFieldAttribute(1, "int", "offset", "int", 4, false, 4)]
[DNAFieldAttribute(4, "int", 1, "offset", "int", false, 4)]
public int offset;
[DNAFieldAttribute(2, "int", "flag", "int", 4, false, 8)]
[DNAFieldAttribute(4, "int", 2, "flag", "int", false, 8)]
public int flag;
[DNAFieldAttribute(3, "int", "active", "int", 4, false, 12)]
[DNAFieldAttribute(4, "int", 3, "active", "int", false, 12)]
public int active;
[DNAFieldAttribute(4, "int", "active_rnd", "int", 4, false, 16)]
[DNAFieldAttribute(4, "int", 4, "active_rnd", "int", false, 16)]
public int active_rnd;
[DNAFieldAttribute(5, "int", "active_clone", "int", 4, false, 20)]
[DNAFieldAttribute(4, "int", 5, "active_clone", "int", false, 20)]
public int active_clone;
[DNAFieldAttribute(6, "int", "active_mask", "int", 4, false, 24)]
[DNAFieldAttribute(4, "int", 6, "active_mask", "int", false, 24)]
public int active_mask;
[DNAFieldAttribute(7, "int", "uid", "int", 4, false, 28)]
[DNAFieldAttribute(4, "int", 7, "uid", "int", false, 28)]
public int uid;
[DNAFieldAttribute(8, "char", "name[68]", "System.Char[]", 68, false, 32)]
[DNAFieldAttribute(68, "char", 8, "name[68]", "System.Char[]", false, 32)]
public char[] name = new System.Char[68];
[DNAFieldAttribute(9, "char", "_pad1[4]", "System.Char[]", 4, false, 100)]
[DNAFieldAttribute(4, "char", 9, "_pad1[4]", "System.Char[]", false, 100)]
public char[] _pad1 = new System.Char[4];
[DNAFieldAttribute(10, "void", "*data", "void", 8, true, 104)]
public object ptr_data;
[DNAFieldAttribute(11, "ImplicitSharingInfoHandle", "*sharing_info", "ImplicitSharingInfoHandle", 8, true, 112)]
public ImplicitSharingInfoHandle ptr_sharing_info;
[DNAFieldAttribute(8, "void", 10, "*data", "void", true, 104)]
public object data;
[DNAFieldAttribute(8, "ImplicitSharingInfoHandle", 11, "*sharing_info", "ImplicitSharingInfoHandle", true, 112)]
public ImplicitSharingInfoHandle sharing_info;
public CustomDataLayer() {
this.type = default;
this.offset = default;
@@ -50,10 +50,10 @@ namespace BlendFile.DNA {
this.uid = default;
this.name = default;
this._pad1 = default;
this.ptr_data = default;
this.ptr_sharing_info = default;
this.data = default;
this.sharing_info = default;
}
public CustomDataLayer(int type, int offset, int flag, int active, int active_rnd, int active_clone, int active_mask, int uid, char[] name, char[] _pad1, object ptr_data, ImplicitSharingInfoHandle ptr_sharing_info) {
public CustomDataLayer(int type, int offset, int flag, int active, int active_rnd, int active_clone, int active_mask, int uid, char[] name, char[] _pad1, object data, ImplicitSharingInfoHandle sharing_info) {
this.type = type;
this.offset = offset;
this.flag = flag;
@@ -64,8 +64,8 @@ namespace BlendFile.DNA {
this.uid = uid;
this.name = name;
this._pad1 = _pad1;
this.ptr_data = ptr_data;
this.ptr_sharing_info = ptr_sharing_info;
this.data = data;
this.sharing_info = sharing_info;
}
}
}