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,25 +15,25 @@ namespace BlendFile.DNA {
[DNAClassAttribute(456, "UVProjectModifierData", 296)]
public class UVProjectModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120, false)]
[DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120, false, 0)]
public ModifierData modifier;
[DNAFieldAttribute(1, "Object", "*projectors[10]", "Object[]", 80, true)]
[DNAFieldAttribute(1, "Object", "*projectors[10]", "Object[]", 80, true, 120)]
public Object[] ptr_project = new Object[10];
[DNAFieldAttribute(2, "char", "_pad2[4]", "System.Char[]", 4, false)]
[DNAFieldAttribute(2, "char", "_pad2[4]", "System.Char[]", 4, false, 200)]
public char[] _pad2 = new System.Char[4];
[DNAFieldAttribute(3, "int", "num_projectors", "int", 4, false)]
[DNAFieldAttribute(3, "int", "num_projectors", "int", 4, false, 204)]
public int num_projectors;
[DNAFieldAttribute(4, "float", "aspectx", "float", 4, false)]
[DNAFieldAttribute(4, "float", "aspectx", "float", 4, false, 208)]
public float aspectx;
[DNAFieldAttribute(5, "float", "aspecty", "float", 4, false)]
[DNAFieldAttribute(5, "float", "aspecty", "float", 4, false, 212)]
public float aspecty;
[DNAFieldAttribute(6, "float", "scalex", "float", 4, false)]
[DNAFieldAttribute(6, "float", "scalex", "float", 4, false, 216)]
public float scalex;
[DNAFieldAttribute(7, "float", "scaley", "float", 4, false)]
[DNAFieldAttribute(7, "float", "scaley", "float", 4, false, 220)]
public float scaley;
[DNAFieldAttribute(8, "char", "uvlayer_name[68]", "System.Char[]", 68, false)]
[DNAFieldAttribute(8, "char", "uvlayer_name[68]", "System.Char[]", 68, false, 224)]
public char[] uvlayer_name = new System.Char[68];
[DNAFieldAttribute(9, "int", "uvlayer_tmp", "int", 4, false)]
[DNAFieldAttribute(9, "int", "uvlayer_tmp", "int", 4, false, 292)]
public int uvlayer_tmp;
public UVProjectModifierData() {
this.modifier = default;