Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

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