Files
BlenderSharp/BlendFile/DNA/UVWarpModifierData.cs
2025-02-19 18:48:50 +01:00

84 lines
3.8 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(502, "UVWarpModifierData", 432)]
public class UVWarpModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120, false)]
public ModifierData modifier;
[DNAFieldAttribute(1, "char", "axis_u", "char", 1, false)]
public char axis_u;
[DNAFieldAttribute(2, "char", "axis_v", "char", 1, false)]
public char axis_v;
[DNAFieldAttribute(3, "short", "flag", "short", 2, false)]
public short flag;
[DNAFieldAttribute(4, "float", "center[2]", "System.Single[]", 8, false)]
public float[] center = new System.Single[2];
[DNAFieldAttribute(5, "float", "offset[2]", "System.Single[]", 8, false)]
public float[] offset = new System.Single[2];
[DNAFieldAttribute(6, "float", "scale[2]", "System.Single[]", 8, false)]
public float[] scale = new System.Single[2];
[DNAFieldAttribute(7, "float", "rotation", "float", 4, false)]
public float rotation;
[DNAFieldAttribute(8, "Object", "*object_src", "Object", 8, true)]
public Object ptr_object_src;
[DNAFieldAttribute(9, "char", "bone_src[64]", "System.Char[]", 64, false)]
public char[] bone_src = new System.Char[64];
[DNAFieldAttribute(10, "Object", "*object_dst", "Object", 8, true)]
public Object ptr_object_dst;
[DNAFieldAttribute(11, "char", "bone_dst[64]", "System.Char[]", 64, false)]
public char[] bone_dst = new System.Char[64];
[DNAFieldAttribute(12, "char", "vgroup_name[64]", "System.Char[]", 64, false)]
public char[] vgroup_name = new System.Char[64];
[DNAFieldAttribute(13, "char", "uvlayer_name[68]", "System.Char[]", 68, false)]
public char[] uvlayer_name = new System.Char[68];
[DNAFieldAttribute(14, "char", "_pad[4]", "System.Char[]", 4, false)]
public char[] _pad = new System.Char[4];
public UVWarpModifierData() {
this.modifier = default;
this.axis_u = default;
this.axis_v = default;
this.flag = default;
this.center = default;
this.offset = default;
this.scale = default;
this.rotation = default;
this.ptr_object_src = default;
this.bone_src = default;
this.ptr_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) {
this.modifier = modifier;
this.axis_u = axis_u;
this.axis_v = axis_v;
this.flag = flag;
this.center = center;
this.offset = offset;
this.scale = scale;
this.rotation = rotation;
this.ptr_object_src = ptr_object_src;
this.bone_src = bone_src;
this.ptr_object_dst = ptr_object_dst;
this.bone_dst = bone_dst;
this.vgroup_name = vgroup_name;
this.uvlayer_name = uvlayer_name;
this._pad = _pad;
}
}
}