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 float voxel_size;
[DNAFieldAttribute(9, "float", "adaptivity", 4)]
public float adaptivity;
public RemeshModifierData() {
this.modifier = default;
this.threshold = default;
this.scale = default;
this.hermite_num = default;
this.depth = default;
this.flag = default;
this.mode = default;
this._pad = default;
this.voxel_size = default;
this.adaptivity = default;
}
public RemeshModifierData(ModifierData modifier, float threshold, float scale, float hermite_num, char depth, char flag, char mode, char _pad, float voxel_size, float adaptivity) {
this.modifier = modifier;
this.threshold = threshold;