Files
BlenderSharp/BlendFile/DNA/bLocLimitConstraint.cs

56 lines
2.0 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(196, "bLocLimitConstraint", 28)]
public struct bLocLimitConstraint {
[DNAFieldAttribute(0, "float", "xmin", "float", 4, false, 0)]
public float xmin;
[DNAFieldAttribute(1, "float", "xmax", "float", 4, false, 4)]
public float xmax;
[DNAFieldAttribute(2, "float", "ymin", "float", 4, false, 8)]
public float ymin;
[DNAFieldAttribute(3, "float", "ymax", "float", 4, false, 12)]
public float ymax;
[DNAFieldAttribute(4, "float", "zmin", "float", 4, false, 16)]
public float zmin;
[DNAFieldAttribute(5, "float", "zmax", "float", 4, false, 20)]
public float zmax;
[DNAFieldAttribute(6, "short", "flag", "short", 2, false, 24)]
public short flag;
[DNAFieldAttribute(7, "short", "flag2", "short", 2, false, 26)]
public short flag2;
public bLocLimitConstraint() {
this.xmin = default;
this.xmax = default;
this.ymin = default;
this.ymax = default;
this.zmin = default;
this.zmax = default;
this.flag = default;
this.flag2 = default;
}
public bLocLimitConstraint(float xmin, float xmax, float ymin, float ymax, float zmin, float zmax, short flag, short flag2) {
this.xmin = xmin;
this.xmax = xmax;
this.ymin = ymin;
this.ymax = ymax;
this.zmin = zmin;
this.zmax = zmax;
this.flag = flag;
this.flag2 = flag2;
}
}
}