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 BooleanModifierData {
public ModifierData modifier;
public Object ptr_object;
public Collection ptr_collection;
public float double_threshold;
public char operation;
public char solver;
public char material_mode;
public char flag;
public char bm_flag;
public char[] _pad = new System.Char[7];
public BooleanModifierData(ModifierData modifier, Object ptr_object, Collection ptr_collection, float double_threshold, char operation, char solver, char material_mode, char flag, char bm_flag, char[] _pad) {
this.modifier = modifier;
this.ptr_object = ptr_object;
this.ptr_collection = ptr_collection;
this.double_threshold = double_threshold;
this.operation = operation;
this.solver = solver;
this.material_mode = material_mode;
this.flag = flag;
this.bm_flag = bm_flag;
this._pad = _pad;
}
}
}