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,13 +15,13 @@ namespace BlendFile.DNA {
[DNAClassAttribute(877, "StripElem", 268)]
public struct StripElem {
[DNAFieldAttribute(0, "char", "name[256]", "System.Char[]", 256, false)]
[DNAFieldAttribute(0, "char", "name[256]", "System.Char[]", 256, false, 0)]
public char[] name = new System.Char[256];
[DNAFieldAttribute(1, "int", "orig_width", "int", 4, false)]
[DNAFieldAttribute(1, "int", "orig_width", "int", 4, false, 256)]
public int orig_width;
[DNAFieldAttribute(2, "int", "orig_height", "int", 4, false)]
[DNAFieldAttribute(2, "int", "orig_height", "int", 4, false, 260)]
public int orig_height;
[DNAFieldAttribute(3, "float", "orig_fps", "float", 4, false)]
[DNAFieldAttribute(3, "float", "orig_fps", "float", 4, false, 264)]
public float orig_fps;
public StripElem() {
this.name = default;