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,18 +11,30 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class CorrectiveSmoothModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", 120)]
public ModifierData modifier;
[DNAFieldAttribute(2, "int", "bind_coords_num", 4)]
public int bind_coords_num;
[DNAFieldAttribute(3, "float", "lambda", 4)]
public float lambda;
[DNAFieldAttribute(4, "float", "scale", 4)]
public float scale;
[DNAFieldAttribute(5, "short", "repeat", 2)]
public short repeat;
[DNAFieldAttribute(6, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(7, "char", "smooth_type", 1)]
public char smooth_type;
[DNAFieldAttribute(8, "char", "rest_source", 1)]
public char rest_source;
[DNAFieldAttribute(9, "char", "_pad[6]", 1)]
public char[] _pad = new System.Char[6];
[DNAFieldAttribute(10, "char", "defgrp_name[64]", 1)]
public char[] defgrp_name = new System.Char[64];
[DNAFieldAttribute(11, "CorrectiveSmoothDeltaCache", "delta_cache", 32)]
public CorrectiveSmoothDeltaCache delta_cache;
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;