Added Generation Output
This commit is contained in:
30
BlendFile/DNA/bConstraintTarget.cs
Normal file
30
BlendFile/DNA/bConstraintTarget.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
|
||||
namespace BlendFile.DNA {
|
||||
|
||||
public class bConstraintTarget {
|
||||
public bConstraintTarget ptr_next;
|
||||
public bConstraintTarget ptr_prev;
|
||||
public Object ptr_tar;
|
||||
public char[] subtarget = new System.Char[64];
|
||||
public float[,] matrix = new System.Single[4][4];
|
||||
public short space;
|
||||
public short flag;
|
||||
public short type;
|
||||
public short rotOrder;
|
||||
public float weight;
|
||||
public char[] _pad = new System.Char[4];
|
||||
public bConstraintTarget(bConstraintTarget ptr_next, bConstraintTarget ptr_prev, Object ptr_tar, char[] subtarget, float[,] matrix, short space, short flag, short type, short rotOrder, float weight, char[] _pad) {
|
||||
this.ptr_next = ptr_next;
|
||||
this.ptr_prev = ptr_prev;
|
||||
this.ptr_tar = ptr_tar;
|
||||
this.subtarget = subtarget;
|
||||
this.matrix = matrix;
|
||||
this.space = space;
|
||||
this.flag = flag;
|
||||
this.type = type;
|
||||
this.rotOrder = rotOrder;
|
||||
this.weight = weight;
|
||||
this._pad = _pad;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user