36 lines
1.1 KiB
C#
36 lines
1.1 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(192, "bClampToConstraint", 16)]
|
|
public class bClampToConstraint {
|
|
[DNAFieldAttribute(8, "Object", 0, "*tar", "Object", true, 0)]
|
|
public Object tar;
|
|
[DNAFieldAttribute(4, "int", 1, "flag", "int", false, 8)]
|
|
public int flag;
|
|
[DNAFieldAttribute(4, "int", 2, "flag2", "int", false, 12)]
|
|
public int flag2;
|
|
public bClampToConstraint() {
|
|
this.tar = default;
|
|
this.flag = default;
|
|
this.flag2 = default;
|
|
}
|
|
public bClampToConstraint(Object tar, int flag, int flag2) {
|
|
this.tar = tar;
|
|
this.flag = flag;
|
|
this.flag2 = flag2;
|
|
}
|
|
}
|
|
}
|