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(411, "MaskLayerShape", 40)]
public class MaskLayerShape {
[DNAFieldAttribute(0, "MaskLayerShape", "*next", "MaskLayerShape", 8, true)]
[DNAFieldAttribute(0, "MaskLayerShape", "*next", "MaskLayerShape", 8, true, 0)]
public MaskLayerShape ptr_next;
[DNAFieldAttribute(1, "MaskLayerShape", "*prev", "MaskLayerShape", 8, true)]
[DNAFieldAttribute(1, "MaskLayerShape", "*prev", "MaskLayerShape", 8, true, 8)]
public MaskLayerShape ptr_prev;
[DNAFieldAttribute(2, "float", "*data", "float", 8, true)]
[DNAFieldAttribute(2, "float", "*data", "float", 8, true, 16)]
public float ptr_data;
[DNAFieldAttribute(3, "int", "tot_vert", "int", 4, false)]
[DNAFieldAttribute(3, "int", "tot_vert", "int", 4, false, 24)]
public int tot_vert;
[DNAFieldAttribute(4, "int", "frame", "int", 4, false)]
[DNAFieldAttribute(4, "int", "frame", "int", 4, false, 28)]
public int frame;
[DNAFieldAttribute(5, "char", "flag", "char", 1, false)]
[DNAFieldAttribute(5, "char", "flag", "char", 1, false, 32)]
public char flag;
[DNAFieldAttribute(6, "char", "_pad[7]", "System.Char[]", 7, false)]
[DNAFieldAttribute(6, "char", "_pad[7]", "System.Char[]", 7, false, 33)]
public char[] _pad = new System.Char[7];
public MaskLayerShape() {
this.ptr_next = default;