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

24
BlendFile/DNA/BPoint.cs Normal file
View File

@@ -0,0 +1,24 @@
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public struct BPoint {
public float[] vec = new System.Single[4];
public float alfa;
public float weight;
public uchar f1;
public char[] _pad1 = new System.Char[1];
public short hide;
public float radius;
public char[] _pad = new System.Char[4];
public BPoint(float[] vec, float alfa, float weight, uchar f1, char[] _pad1, short hide, float radius, char[] _pad) {
this.vec = vec;
this.alfa = alfa;
this.weight = weight;
this.f1 = f1;
this._pad1 = _pad1;
this.hide = hide;
this.radius = radius;
this._pad = _pad;
}
}
}