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,17 +15,17 @@ namespace BlendFile.DNA {
[DNAClassAttribute(41, "PreviewImage", 48)]
public class PreviewImage {
[DNAFieldAttribute(0, "int", "w[2]", "System.Int32[]", 8, false)]
[DNAFieldAttribute(0, "int", "w[2]", "System.Int32[]", 8, false, 0)]
public int[] w = new System.Int32[2];
[DNAFieldAttribute(1, "int", "h[2]", "System.Int32[]", 8, false)]
[DNAFieldAttribute(1, "int", "h[2]", "System.Int32[]", 8, false, 8)]
public int[] h = new System.Int32[2];
[DNAFieldAttribute(2, "short", "flag[2]", "System.Int16[]", 4, false)]
[DNAFieldAttribute(2, "short", "flag[2]", "System.Int16[]", 4, false, 16)]
public short[] flag = new System.Int16[2];
[DNAFieldAttribute(3, "short", "changed_timestamp[2]", "System.Int16[]", 4, false)]
[DNAFieldAttribute(3, "short", "changed_timestamp[2]", "System.Int16[]", 4, false, 20)]
public short[] changed_timestamp = new System.Int16[2];
[DNAFieldAttribute(4, "int", "*rect[2]", "System.Int32[]", 16, true)]
[DNAFieldAttribute(4, "int", "*rect[2]", "System.Int32[]", 16, true, 24)]
public int[] ptr_r = new System.Int32[2];
[DNAFieldAttribute(5, "PreviewImageRuntimeHandle", "*runtime", "PreviewImageRuntimeHandle", 8, true)]
[DNAFieldAttribute(5, "PreviewImageRuntimeHandle", "*runtime", "PreviewImageRuntimeHandle", 8, true, 40)]
public PreviewImageRuntimeHandle ptr_runtime;
public PreviewImage() {
this.w = default;