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,35 +15,35 @@ namespace BlendFile.DNA {
[DNAClassAttribute(502, "UVWarpModifierData", 432)]
public class UVWarpModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120, false, 0)]
[DNAFieldAttribute(120, "ModifierData", 0, "modifier", "ModifierData", false, 0)]
public ModifierData modifier;
[DNAFieldAttribute(1, "char", "axis_u", "char", 1, false, 120)]
[DNAFieldAttribute(1, "char", 1, "axis_u", "char", false, 120)]
public char axis_u;
[DNAFieldAttribute(2, "char", "axis_v", "char", 1, false, 121)]
[DNAFieldAttribute(1, "char", 2, "axis_v", "char", false, 121)]
public char axis_v;
[DNAFieldAttribute(3, "short", "flag", "short", 2, false, 122)]
[DNAFieldAttribute(2, "short", 3, "flag", "short", false, 122)]
public short flag;
[DNAFieldAttribute(4, "float", "center[2]", "System.Single[]", 8, false, 124)]
[DNAFieldAttribute(8, "float", 4, "center[2]", "System.Single[]", false, 124)]
public float[] center = new System.Single[2];
[DNAFieldAttribute(5, "float", "offset[2]", "System.Single[]", 8, false, 132)]
[DNAFieldAttribute(8, "float", 5, "offset[2]", "System.Single[]", false, 132)]
public float[] offset = new System.Single[2];
[DNAFieldAttribute(6, "float", "scale[2]", "System.Single[]", 8, false, 140)]
[DNAFieldAttribute(8, "float", 6, "scale[2]", "System.Single[]", false, 140)]
public float[] scale = new System.Single[2];
[DNAFieldAttribute(7, "float", "rotation", "float", 4, false, 148)]
[DNAFieldAttribute(4, "float", 7, "rotation", "float", false, 148)]
public float rotation;
[DNAFieldAttribute(8, "Object", "*object_src", "Object", 8, true, 152)]
public Object ptr_object_src;
[DNAFieldAttribute(9, "char", "bone_src[64]", "System.Char[]", 64, false, 160)]
[DNAFieldAttribute(8, "Object", 8, "*object_src", "Object", true, 152)]
public Object object_src;
[DNAFieldAttribute(64, "char", 9, "bone_src[64]", "System.Char[]", false, 160)]
public char[] bone_src = new System.Char[64];
[DNAFieldAttribute(10, "Object", "*object_dst", "Object", 8, true, 224)]
public Object ptr_object_dst;
[DNAFieldAttribute(11, "char", "bone_dst[64]", "System.Char[]", 64, false, 232)]
[DNAFieldAttribute(8, "Object", 10, "*object_dst", "Object", true, 224)]
public Object object_dst;
[DNAFieldAttribute(64, "char", 11, "bone_dst[64]", "System.Char[]", false, 232)]
public char[] bone_dst = new System.Char[64];
[DNAFieldAttribute(12, "char", "vgroup_name[64]", "System.Char[]", 64, false, 296)]
[DNAFieldAttribute(64, "char", 12, "vgroup_name[64]", "System.Char[]", false, 296)]
public char[] vgroup_name = new System.Char[64];
[DNAFieldAttribute(13, "char", "uvlayer_name[68]", "System.Char[]", 68, false, 360)]
[DNAFieldAttribute(68, "char", 13, "uvlayer_name[68]", "System.Char[]", false, 360)]
public char[] uvlayer_name = new System.Char[68];
[DNAFieldAttribute(14, "char", "_pad[4]", "System.Char[]", 4, false, 428)]
[DNAFieldAttribute(4, "char", 14, "_pad[4]", "System.Char[]", false, 428)]
public char[] _pad = new System.Char[4];
public UVWarpModifierData() {
this.modifier = default;
@@ -54,15 +54,15 @@ namespace BlendFile.DNA {
this.offset = default;
this.scale = default;
this.rotation = default;
this.ptr_object_src = default;
this.object_src = default;
this.bone_src = default;
this.ptr_object_dst = default;
this.object_dst = default;
this.bone_dst = default;
this.vgroup_name = default;
this.uvlayer_name = default;
this._pad = default;
}
public UVWarpModifierData(ModifierData modifier, char axis_u, char axis_v, short flag, float[] center, float[] offset, float[] scale, float rotation, Object ptr_object_src, char[] bone_src, Object ptr_object_dst, char[] bone_dst, char[] vgroup_name, char[] uvlayer_name, char[] _pad) {
public UVWarpModifierData(ModifierData modifier, char axis_u, char axis_v, short flag, float[] center, float[] offset, float[] scale, float rotation, Object object_src, char[] bone_src, Object object_dst, char[] bone_dst, char[] vgroup_name, char[] uvlayer_name, char[] _pad) {
this.modifier = modifier;
this.axis_u = axis_u;
this.axis_v = axis_v;
@@ -71,9 +71,9 @@ namespace BlendFile.DNA {
this.offset = offset;
this.scale = scale;
this.rotation = rotation;
this.ptr_object_src = ptr_object_src;
this.object_src = object_src;
this.bone_src = bone_src;
this.ptr_object_dst = ptr_object_dst;
this.object_dst = object_dst;
this.bone_dst = bone_dst;
this.vgroup_name = vgroup_name;
this.uvlayer_name = uvlayer_name;