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

@@ -31,6 +31,16 @@ namespace BlendFile.DNA {
public char rest_source;
[DNAFieldAttribute(8, "char", "_pad[6]", 1)]
public char[] _pad = new System.Char[6];
public CorrectiveSmoothDeltaCache() {
this.deltas_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;
}
public CorrectiveSmoothDeltaCache(int deltas_num, float lambda, float scale, short repeat, short flag, char smooth_type, char rest_source, char[] _pad) {
this.deltas_num = deltas_num;
this.lambda = lambda;