Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

@@ -15,30 +15,30 @@ namespace BlendFile.DNA {
[DNAClassAttribute(473, "BooleanModifierData", 152)]
public class BooleanModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120, false, 0)]
[DNAFieldAttribute(120, "ModifierData", 0, "modifier", "ModifierData", false, 0)]
public ModifierData modifier;
[DNAFieldAttribute(1, "Object", "*object", "Object", 8, true, 120)]
public Object ptr_object;
[DNAFieldAttribute(2, "Collection", "*collection", "Collection", 8, true, 128)]
public Collection ptr_collection;
[DNAFieldAttribute(3, "float", "double_threshold", "float", 4, false, 136)]
[DNAFieldAttribute(8, "Object", 1, "*object", "Object", true, 120)]
public Object @object;
[DNAFieldAttribute(8, "Collection", 2, "*collection", "Collection", true, 128)]
public Collection collection;
[DNAFieldAttribute(4, "float", 3, "double_threshold", "float", false, 136)]
public float double_threshold;
[DNAFieldAttribute(4, "char", "operation", "char", 1, false, 140)]
[DNAFieldAttribute(1, "char", 4, "operation", "char", false, 140)]
public char operation;
[DNAFieldAttribute(5, "char", "solver", "char", 1, false, 141)]
[DNAFieldAttribute(1, "char", 5, "solver", "char", false, 141)]
public char solver;
[DNAFieldAttribute(6, "char", "material_mode", "char", 1, false, 142)]
[DNAFieldAttribute(1, "char", 6, "material_mode", "char", false, 142)]
public char material_mode;
[DNAFieldAttribute(7, "char", "flag", "char", 1, false, 143)]
[DNAFieldAttribute(1, "char", 7, "flag", "char", false, 143)]
public char flag;
[DNAFieldAttribute(8, "char", "bm_flag", "char", 1, false, 144)]
[DNAFieldAttribute(1, "char", 8, "bm_flag", "char", false, 144)]
public char bm_flag;
[DNAFieldAttribute(9, "char", "_pad[7]", "System.Char[]", 7, false, 145)]
[DNAFieldAttribute(7, "char", 9, "_pad[7]", "System.Char[]", false, 145)]
public char[] _pad = new System.Char[7];
public BooleanModifierData() {
this.modifier = default;
this.ptr_object = default;
this.ptr_collection = default;
this.@object = default;
this.collection = default;
this.double_threshold = default;
this.operation = default;
this.solver = default;
@@ -47,10 +47,10 @@ namespace BlendFile.DNA {
this.bm_flag = default;
this._pad = default;
}
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) {
public BooleanModifierData(ModifierData modifier, Object @object, Collection 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.@object = @object;
this.collection = collection;
this.double_threshold = double_threshold;
this.operation = operation;
this.solver = solver;