Files
BlenderSharp/BlendFile/DNA/bPivotConstraint.cs
2025-03-04 18:48:04 +01:00

44 lines
1.6 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(195, "bPivotConstraint", 88)]
public class bPivotConstraint {
[DNAFieldAttribute(8, "Object", 0, "*tar", "Object", true, 0)]
public Object tar;
[DNAFieldAttribute(64, "char", 1, "subtarget[64]", "System.Char[]", false, 8)]
public char[] subtarget = new System.Char[64];
[DNAFieldAttribute(12, "float", 2, "offset[3]", "System.Single[]", false, 72)]
public float[] offset = new System.Single[3];
[DNAFieldAttribute(2, "short", 3, "rotAxis", "short", false, 84)]
public short rotAxis;
[DNAFieldAttribute(2, "short", 4, "flag", "short", false, 86)]
public short flag;
public bPivotConstraint() {
this.tar = default;
this.subtarget = default;
this.offset = default;
this.rotAxis = default;
this.flag = default;
}
public bPivotConstraint(Object tar, char[] subtarget, float[] offset, short rotAxis, short flag) {
this.tar = tar;
this.subtarget = subtarget;
this.offset = offset;
this.rotAxis = rotAxis;
this.flag = flag;
}
}
}