Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,15 +11,24 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class CorrectiveSmoothDeltaCache {
[DNAFieldAttribute(1, "int", "deltas_num", 4)]
public int deltas_num;
[DNAFieldAttribute(2, "float", "lambda", 4)]
public float lambda;
[DNAFieldAttribute(3, "float", "scale", 4)]
public float scale;
[DNAFieldAttribute(4, "short", "repeat", 2)]
public short repeat;
[DNAFieldAttribute(5, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(6, "char", "smooth_type", 1)]
public char smooth_type;
[DNAFieldAttribute(7, "char", "rest_source", 1)]
public char rest_source;
[DNAFieldAttribute(8, "char", "_pad[6]", 1)]
public char[] _pad = new System.Char[6];
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;