Added memoryOffset value to DNAFieldAttribute, regenerated files.

This commit is contained in:
Samuele Lorefice
2025-02-20 21:00:55 +01:00
parent b171b65aa5
commit f383debd18
939 changed files with 9636 additions and 9605 deletions

View File

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