Files
BlenderSharp/BlendFile/DNA/ChildParticle.cs
2025-01-22 02:23:29 +01:00

23 lines
750 B
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public struct ChildParticle {
public int num;
public int parent;
public int[] pa = new System.Int32[4];
public float[] w = new System.Single[4];
public float[] fuv = new System.Single[4];
public float foffset;
public char[] _pad0 = new System.Char[4];
public ChildParticle(int num, int parent, int[] pa, float[] w, float[] fuv, float foffset, char[] _pad0) {
this.num = num;
this.parent = parent;
this.pa = pa;
this.w = w;
this.fuv = fuv;
this.foffset = foffset;
this._pad0 = _pad0;
}
}
}