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