Generated new code and added initial data handling

This commit is contained in:
mm00
2025-01-27 19:24:50 +01:00
parent ebcc629feb
commit 146a3992ce
940 changed files with 11560 additions and 9 deletions

View File

@@ -35,6 +35,18 @@ namespace BlendFile.DNA {
public char[] uvlayer_name = new System.Char[68];
[DNAFieldAttribute(9, "int", "uvlayer_tmp", 4)]
public int uvlayer_tmp;
public UVProjectModifierData() {
this.modifier = default;
this.ptr_project = default;
this._pad2 = default;
this.num_projectors = default;
this.aspectx = default;
this.aspecty = default;
this.scalex = default;
this.scaley = default;
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) {
this.modifier = modifier;
this.ptr_project = ptr_project;