Files
BlenderSharp/BlendFile/DNA/bChildOfConstraint.cs
2025-03-11 19:12: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(193, "bChildOfConstraint", 144)]
public class bChildOfConstraint {
[DNAFieldAttribute(8, "Object", 0, "*tar", "Object", true, 0)]
public Object tar;
[DNAFieldAttribute(4, "int", 1, "flag", "int", false, 8)]
public int flag;
[DNAArrayAttribute(4, "char", 2, "_pad[4]", "System.Char[]", 4, 12)]
public char[] _pad = new System.Char[4];
[DNAArrayAttribute(64, "float", 3, "invmat[4][4]", "System.Single[,]", 8, 16)]
public float[,] invmat = new System.Single[4,4];
[DNAArrayAttribute(64, "char", 4, "subtarget[64]", "System.Char[]", 64, 80)]
public char[] subtarget = new System.Char[64];
public bChildOfConstraint() {
this.tar = default;
this.flag = default;
this._pad = default;
this.invmat = default;
this.subtarget = default;
}
public bChildOfConstraint(Object tar, int flag, char[] _pad, float[,] invmat, char[] subtarget) {
this.tar = tar;
this.flag = flag;
this._pad = _pad;
this.invmat = invmat;
this.subtarget = subtarget;
}
}
}