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(328, "ImageTile_Runtime", 24)]
public struct ImageTile_Runtime {
[DNAFieldAttribute(0, "int", "tilearray_layer", "int", 4, false)]
[DNAFieldAttribute(0, "int", "tilearray_layer", "int", 4, false, 0)]
public int tilearray_layer;
[DNAFieldAttribute(1, "int", "_pad", "int", 4, false)]
[DNAFieldAttribute(1, "int", "_pad", "int", 4, false, 4)]
public int _pad;
[DNAFieldAttribute(2, "int", "tilearray_offset[2]", "System.Int32[]", 8, false)]
[DNAFieldAttribute(2, "int", "tilearray_offset[2]", "System.Int32[]", 8, false, 8)]
public int[] tilearray_offset = new System.Int32[2];
[DNAFieldAttribute(3, "int", "tilearray_size[2]", "System.Int32[]", 8, false)]
[DNAFieldAttribute(3, "int", "tilearray_size[2]", "System.Int32[]", 8, false, 16)]
public int[] tilearray_size = new System.Int32[2];
public ImageTile_Runtime() {
this.tilearray_layer = default;