Added Generation Output

This commit is contained in:
Samuele Lorefice
2025-01-22 02:23:29 +01:00
parent 83b207b799
commit fa78292a67
936 changed files with 31758 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class VolumeToMeshModifierData {
public ModifierData modifier;
public Object ptr_object;
public float threshold;
public float adaptivity;
public int flag;
public int resolution_mode;
public float voxel_size;
public int voxel_amount;
public char[] grid_name = new System.Char[64];
public object ptr__pad1;
public VolumeToMeshModifierData(ModifierData modifier, Object ptr_object, float threshold, float adaptivity, int flag, int resolution_mode, float voxel_size, int voxel_amount, char[] grid_name, object ptr__pad1) {
this.modifier = modifier;
this.ptr_object = ptr_object;
this.threshold = threshold;
this.adaptivity = adaptivity;
this.flag = flag;
this.resolution_mode = resolution_mode;
this.voxel_size = voxel_size;
this.voxel_amount = voxel_amount;
this.grid_name = grid_name;
this.ptr__pad1 = ptr__pad1;
}
}
}