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,28 +15,28 @@ namespace BlendFile.DNA {
[DNAClassAttribute(452, "MirrorModifierData", 168)]
public class MirrorModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120, false, 0)]
[DNAFieldAttribute(120, "ModifierData", 0, "modifier", "ModifierData", false, 0)]
public ModifierData modifier;
[DNAFieldAttribute(1, "short", "axis", "short", 2, false, 120)]
[DNAFieldAttribute(2, "short", 1, "axis", "short", false, 120)]
public short axis;
[DNAFieldAttribute(2, "short", "flag", "short", 2, false, 122)]
[DNAFieldAttribute(2, "short", 2, "flag", "short", false, 122)]
public short flag;
[DNAFieldAttribute(3, "float", "tolerance", "float", 4, false, 124)]
[DNAFieldAttribute(4, "float", 3, "tolerance", "float", false, 124)]
public float tolerance;
[DNAFieldAttribute(4, "float", "bisect_threshold", "float", 4, false, 128)]
[DNAFieldAttribute(4, "float", 4, "bisect_threshold", "float", false, 128)]
public float bisect_threshold;
[DNAFieldAttribute(5, "uchar", "use_correct_order_on_merge", "uchar", 1, false, 132)]
[DNAFieldAttribute(1, "uchar", 5, "use_correct_order_on_merge", "uchar", false, 132)]
public byte use_correct_order_on_merge;
[DNAFieldAttribute(6, "char", "_pad[3]", "System.Char[]", 3, false, 133)]
[DNAFieldAttribute(3, "char", 6, "_pad[3]", "System.Char[]", false, 133)]
public char[] _pad = new System.Char[3];
[DNAFieldAttribute(7, "float", "uv_offset[2]", "System.Single[]", 8, false, 136)]
[DNAFieldAttribute(8, "float", 7, "uv_offset[2]", "System.Single[]", false, 136)]
public float[] uv_offset = new System.Single[2];
[DNAFieldAttribute(8, "float", "uv_offset_copy[2]", "System.Single[]", 8, false, 144)]
[DNAFieldAttribute(8, "float", 8, "uv_offset_copy[2]", "System.Single[]", false, 144)]
public float[] uv_offset_copy = new System.Single[2];
[DNAFieldAttribute(9, "Object", "*mirror_ob", "Object", 8, true, 152)]
public Object ptr_mirror_ob;
[DNAFieldAttribute(10, "void", "*_pad1", "void", 8, true, 160)]
public object ptr__pad1;
[DNAFieldAttribute(8, "Object", 9, "*mirror_ob", "Object", true, 152)]
public Object mirror_ob;
[DNAFieldAttribute(8, "void", 10, "*_pad1", "void", true, 160)]
public object _pad1;
public MirrorModifierData() {
this.modifier = default;
this.axis = default;
@@ -47,10 +47,10 @@ namespace BlendFile.DNA {
this._pad = default;
this.uv_offset = default;
this.uv_offset_copy = default;
this.ptr_mirror_ob = default;
this.ptr__pad1 = default;
this.mirror_ob = default;
this._pad1 = default;
}
public MirrorModifierData(ModifierData modifier, short axis, short flag, float tolerance, float bisect_threshold, byte use_correct_order_on_merge, char[] _pad, float[] uv_offset, float[] uv_offset_copy, Object ptr_mirror_ob, object ptr__pad1) {
public MirrorModifierData(ModifierData modifier, short axis, short flag, float tolerance, float bisect_threshold, byte use_correct_order_on_merge, char[] _pad, float[] uv_offset, float[] uv_offset_copy, Object mirror_ob, object _pad1) {
this.modifier = modifier;
this.axis = axis;
this.flag = flag;
@@ -60,8 +60,8 @@ namespace BlendFile.DNA {
this._pad = _pad;
this.uv_offset = uv_offset;
this.uv_offset_copy = uv_offset_copy;
this.ptr_mirror_ob = ptr_mirror_ob;
this.ptr__pad1 = ptr__pad1;
this.mirror_ob = mirror_ob;
this._pad1 = _pad1;
}
}
}