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,17 +11,28 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public struct RemeshModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", 120)]
public ModifierData modifier;
[DNAFieldAttribute(1, "float", "threshold", 4)]
public float threshold;
[DNAFieldAttribute(2, "float", "scale", 4)]
public float scale;
[DNAFieldAttribute(3, "float", "hermite_num", 4)]
public float hermite_num;
[DNAFieldAttribute(4, "char", "depth", 1)]
public char depth;
[DNAFieldAttribute(5, "char", "flag", 1)]
public char flag;
[DNAFieldAttribute(6, "char", "mode", 1)]
public char mode;
[DNAFieldAttribute(7, "char", "_pad", 1)]
public char _pad;
[DNAFieldAttribute(8, "float", "voxel_size", 4)]
public float voxel_size;
[DNAFieldAttribute(9, "float", "adaptivity", 4)]
public float adaptivity;
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;