Regenerated all the files
This commit is contained in:
@@ -11,22 +11,38 @@ using System;
|
||||
|
||||
|
||||
namespace BlendFile.DNA {
|
||||
using BlendFile;
|
||||
|
||||
public class UVWarpModifierData {
|
||||
[DNAFieldAttribute(0, "ModifierData", "modifier", 120)]
|
||||
public ModifierData modifier;
|
||||
[DNAFieldAttribute(1, "char", "axis_u", 1)]
|
||||
public char axis_u;
|
||||
[DNAFieldAttribute(2, "char", "axis_v", 1)]
|
||||
public char axis_v;
|
||||
[DNAFieldAttribute(3, "short", "flag", 2)]
|
||||
public short flag;
|
||||
[DNAFieldAttribute(4, "float", "center[2]", 4)]
|
||||
public float[] center = new System.Single[2];
|
||||
[DNAFieldAttribute(5, "float", "offset[2]", 4)]
|
||||
public float[] offset = new System.Single[2];
|
||||
[DNAFieldAttribute(6, "float", "scale[2]", 4)]
|
||||
public float[] scale = new System.Single[2];
|
||||
[DNAFieldAttribute(7, "float", "rotation", 4)]
|
||||
public float rotation;
|
||||
[DNAFieldAttribute(8, "Object", "*object_src", 1160)]
|
||||
public Object ptr_object_src;
|
||||
[DNAFieldAttribute(9, "char", "bone_src[64]", 1)]
|
||||
public char[] bone_src = new System.Char[64];
|
||||
[DNAFieldAttribute(10, "Object", "*object_dst", 1160)]
|
||||
public Object ptr_object_dst;
|
||||
[DNAFieldAttribute(11, "char", "bone_dst[64]", 1)]
|
||||
public char[] bone_dst = new System.Char[64];
|
||||
[DNAFieldAttribute(12, "char", "vgroup_name[64]", 1)]
|
||||
public char[] vgroup_name = new System.Char[64];
|
||||
[DNAFieldAttribute(13, "char", "uvlayer_name[68]", 1)]
|
||||
public char[] uvlayer_name = new System.Char[68];
|
||||
[DNAFieldAttribute(14, "char", "_pad[4]", 1)]
|
||||
public char[] _pad = new System.Char[4];
|
||||
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;
|
||||
|
||||
Reference in New Issue
Block a user