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 char[] defgrp_name = new System.Char[64];
[DNAFieldAttribute(11, "CorrectiveSmoothDeltaCache", "delta_cache", 32)]
public CorrectiveSmoothDeltaCache delta_cache;
public CorrectiveSmoothModifierData() {
this.modifier = default;
this.bind_coords_num = default;
this.lambda = default;
this.scale = default;
this.repeat = default;
this.flag = default;
this.smooth_type = default;
this.rest_source = default;
this._pad = default;
this.defgrp_name = default;
this.delta_cache = default;
}
public CorrectiveSmoothModifierData(ModifierData modifier, int bind_coords_num, float lambda, float scale, short repeat, short flag, char smooth_type, char rest_source, char[] _pad, char[] defgrp_name, CorrectiveSmoothDeltaCache delta_cache) {
this.modifier = modifier;
this.bind_coords_num = bind_coords_num;