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,16 +11,26 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class MeshToVolumeModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", 120)]
public ModifierData modifier;
[DNAFieldAttribute(1, "Object", "*object", 1160)]
public Object ptr_object;
[DNAFieldAttribute(2, "int", "resolution_mode", 4)]
public int resolution_mode;
[DNAFieldAttribute(3, "float", "voxel_size", 4)]
public float voxel_size;
[DNAFieldAttribute(4, "int", "voxel_amount", 4)]
public int voxel_amount;
[DNAFieldAttribute(5, "float", "interior_band_width", 4)]
public float interior_band_width;
[DNAFieldAttribute(6, "float", "density", 4)]
public float density;
[DNAFieldAttribute(7, "char", "_pad2[4]", 1)]
public char[] _pad2 = new System.Char[4];
[DNAFieldAttribute(8, "void", "*_pad3", 0)]
public object ptr__pad3;
public MeshToVolumeModifierData(ModifierData modifier, Object ptr_object, int resolution_mode, float voxel_size, int voxel_amount, float interior_band_width, float density, char[] _pad2, object ptr__pad3) {
this.modifier = modifier;