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

@@ -37,6 +37,19 @@ namespace BlendFile.DNA {
public short mode;
[DNAFieldAttribute(10, "int", "face_count", 4)]
public int face_count;
public DecimateModifierData() {
this.modifier = default;
this.percent = default;
this.iter = default;
this.delimit = default;
this.symmetry_axis = default;
this.angle = default;
this.defgrp_name = default;
this.defgrp_factor = default;
this.flag = default;
this.mode = default;
this.face_count = default;
}
public DecimateModifierData(ModifierData modifier, float percent, short iter, char delimit, char symmetry_axis, float angle, char[] defgrp_name, float defgrp_factor, short flag, short mode, int face_count) {
this.modifier = modifier;
this.percent = percent;