Files
BlenderSharp/BlendFile/DNA/bLocLimitConstraint.cs
Samuele Lorefice 0674e6b136 - Modified DNAClassAttribute to also support usage on structs
- Added auto generation of DNAClass attributes on file generation
- Regenerated all files
2025-01-23 16:15:50 +01:00

46 lines
1.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(196, "bLocLimitConstraint")]
public struct bLocLimitConstraint {
[DNAFieldAttribute(0, "float", "xmin", 4)]
public float xmin;
[DNAFieldAttribute(1, "float", "xmax", 4)]
public float xmax;
[DNAFieldAttribute(2, "float", "ymin", 4)]
public float ymin;
[DNAFieldAttribute(3, "float", "ymax", 4)]
public float ymax;
[DNAFieldAttribute(4, "float", "zmin", 4)]
public float zmin;
[DNAFieldAttribute(5, "float", "zmax", 4)]
public float zmax;
[DNAFieldAttribute(6, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(7, "short", "flag2", 2)]
public short flag2;
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;
}
}
}