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,19 +15,19 @@ namespace BlendFile.DNA {
[DNAClassAttribute(407, "MaskParent", 184)]
public class MaskParent {
[DNAFieldAttribute(0, "int", "id_type", "int", 4, false)]
[DNAFieldAttribute(0, "int", "id_type", "int", 4, false, 0)]
public int id_type;
[DNAFieldAttribute(1, "int", "type", "int", 4, false)]
[DNAFieldAttribute(1, "int", "type", "int", 4, false, 4)]
public int type;
[DNAFieldAttribute(2, "ID", "*id", "ID", 8, true)]
[DNAFieldAttribute(2, "ID", "*id", "ID", 8, true, 8)]
public ID ptr_id;
[DNAFieldAttribute(3, "char", "parent[64]", "System.Char[]", 64, false)]
[DNAFieldAttribute(3, "char", "parent[64]", "System.Char[]", 64, false, 16)]
public char[] parent = new System.Char[64];
[DNAFieldAttribute(4, "char", "sub_parent[64]", "System.Char[]", 64, false)]
[DNAFieldAttribute(4, "char", "sub_parent[64]", "System.Char[]", 64, false, 80)]
public char[] sub_parent = new System.Char[64];
[DNAFieldAttribute(5, "float", "parent_orig[2]", "System.Single[]", 8, false)]
[DNAFieldAttribute(5, "float", "parent_orig[2]", "System.Single[]", 8, false, 144)]
public float[] parent_orig = new System.Single[2];
[DNAFieldAttribute(6, "float", "parent_corners_orig[4][2]", "System.Single[,]", 32, false)]
[DNAFieldAttribute(6, "float", "parent_corners_orig[4][2]", "System.Single[,]", 32, false, 152)]
public float[,] parent_corners_orig = new System.Single[4,2];
public MaskParent() {
this.id_type = default;