40 lines
1.4 KiB
C#
40 lines
1.4 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 {
|
|
|
|
public class SimpleDeformModifierData {
|
|
public ModifierData modifier;
|
|
public Object ptr_origin;
|
|
public char[] vgroup_name = new System.Char[64];
|
|
public float factor;
|
|
public float[] limit = new System.Single[2];
|
|
public char mode;
|
|
public char axis;
|
|
public char deform_axis;
|
|
public char flag;
|
|
public object ptr__pad1;
|
|
public SimpleDeformModifierData(ModifierData modifier, Object ptr_origin, char[] vgroup_name, float factor, float[] limit, char mode, char axis, char deform_axis, char flag, object ptr__pad1) {
|
|
this.modifier = modifier;
|
|
this.ptr_origin = ptr_origin;
|
|
this.vgroup_name = vgroup_name;
|
|
this.factor = factor;
|
|
this.limit = limit;
|
|
this.mode = mode;
|
|
this.axis = axis;
|
|
this.deform_axis = deform_axis;
|
|
this.flag = flag;
|
|
this.ptr__pad1 = ptr__pad1;
|
|
}
|
|
}
|
|
}
|