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,21 +15,21 @@ namespace BlendFile.DNA {
[DNAClassAttribute(638, "NodeTexImage", 1024)]
public struct NodeTexImage {
[DNAFieldAttribute(0, "NodeTexBase", "base", "NodeTexBase", 960, false)]
[DNAFieldAttribute(0, "NodeTexBase", "base", "NodeTexBase", 960, false, 0)]
public NodeTexBase @base;
[DNAFieldAttribute(1, "ImageUser", "iuser", "ImageUser", 40, false)]
[DNAFieldAttribute(1, "ImageUser", "iuser", "ImageUser", 40, false, 960)]
public ImageUser iuser;
[DNAFieldAttribute(2, "int", "color_space", "int", 4, false)]
[DNAFieldAttribute(2, "int", "color_space", "int", 4, false, 1000)]
public int color_space;
[DNAFieldAttribute(3, "int", "projection", "int", 4, false)]
[DNAFieldAttribute(3, "int", "projection", "int", 4, false, 1004)]
public int projection;
[DNAFieldAttribute(4, "float", "projection_blend", "float", 4, false)]
[DNAFieldAttribute(4, "float", "projection_blend", "float", 4, false, 1008)]
public float projection_blend;
[DNAFieldAttribute(5, "int", "interpolation", "int", 4, false)]
[DNAFieldAttribute(5, "int", "interpolation", "int", 4, false, 1012)]
public int interpolation;
[DNAFieldAttribute(6, "int", "extension", "int", 4, false)]
[DNAFieldAttribute(6, "int", "extension", "int", 4, false, 1016)]
public int extension;
[DNAFieldAttribute(7, "char", "_pad[4]", "System.Char[]", 4, false)]
[DNAFieldAttribute(7, "char", "_pad[4]", "System.Char[]", 4, false, 1020)]
public char[] _pad = new System.Char[4];
public NodeTexImage() {
this.@base = default;