Added Generation Output

This commit is contained in:
Samuele Lorefice
2025-01-22 02:23:29 +01:00
parent 83b207b799
commit fa78292a67
936 changed files with 31758 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class bRigidBodyJointConstraint {
public Object ptr_tar;
public Object ptr_child;
public int type;
public float pivX;
public float pivY;
public float pivZ;
public float axX;
public float axY;
public float axZ;
public float[] minLimit = new System.Single[6];
public float[] maxLimit = new System.Single[6];
public float extraFz;
public short flag;
public char[] _pad = new System.Char[6];
public bRigidBodyJointConstraint(Object ptr_tar, Object ptr_child, int type, float pivX, float pivY, float pivZ, float axX, float axY, float axZ, float[] minLimit, float[] maxLimit, float extraFz, short flag, char[] _pad) {
this.ptr_tar = ptr_tar;
this.ptr_child = ptr_child;
this.type = type;
this.pivX = pivX;
this.pivY = pivY;
this.pivZ = pivZ;
this.axX = axX;
this.axY = axY;
this.axZ = axZ;
this.minLimit = minLimit;
this.maxLimit = maxLimit;
this.extraFz = extraFz;
this.flag = flag;
this._pad = _pad;
}
}
}