64 lines
2.5 KiB
C#
64 lines
2.5 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(200, "bShrinkwrapConstraint", 24)]
|
|
public class bShrinkwrapConstraint {
|
|
[DNAFieldAttribute(8, "Object", 0, "*target", "Object", true, 0)]
|
|
public Object target;
|
|
[DNAFieldAttribute(4, "float", 1, "dist", "float", false, 8)]
|
|
public float dist;
|
|
[DNAFieldAttribute(2, "short", 2, "shrinkType", "short", false, 12)]
|
|
public short shrinkType;
|
|
[DNAFieldAttribute(1, "char", 3, "projAxis", "char", false, 14)]
|
|
public char projAxis;
|
|
[DNAFieldAttribute(1, "char", 4, "projAxisSpace", "char", false, 15)]
|
|
public char projAxisSpace;
|
|
[DNAFieldAttribute(4, "float", 5, "projLimit", "float", false, 16)]
|
|
public float projLimit;
|
|
[DNAFieldAttribute(1, "char", 6, "shrinkMode", "char", false, 20)]
|
|
public char shrinkMode;
|
|
[DNAFieldAttribute(1, "char", 7, "flag", "char", false, 21)]
|
|
public char flag;
|
|
[DNAFieldAttribute(1, "char", 8, "trackAxis", "char", false, 22)]
|
|
public char trackAxis;
|
|
[DNAFieldAttribute(1, "char", 9, "_pad", "char", false, 23)]
|
|
public char _pad;
|
|
public bShrinkwrapConstraint() {
|
|
this.target = default;
|
|
this.dist = default;
|
|
this.shrinkType = default;
|
|
this.projAxis = default;
|
|
this.projAxisSpace = default;
|
|
this.projLimit = default;
|
|
this.shrinkMode = default;
|
|
this.flag = default;
|
|
this.trackAxis = default;
|
|
this._pad = default;
|
|
}
|
|
public bShrinkwrapConstraint(Object target, float dist, short shrinkType, char projAxis, char projAxisSpace, float projLimit, char shrinkMode, char flag, char trackAxis, char _pad) {
|
|
this.target = target;
|
|
this.dist = dist;
|
|
this.shrinkType = shrinkType;
|
|
this.projAxis = projAxis;
|
|
this.projAxisSpace = projAxisSpace;
|
|
this.projLimit = projLimit;
|
|
this.shrinkMode = shrinkMode;
|
|
this.flag = flag;
|
|
this.trackAxis = trackAxis;
|
|
this._pad = _pad;
|
|
}
|
|
}
|
|
}
|