Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,14 +11,22 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public struct ChildParticle {
[DNAFieldAttribute(0, "int", "num", 4)]
public int num;
[DNAFieldAttribute(1, "int", "parent", 4)]
public int parent;
[DNAFieldAttribute(2, "int", "pa[4]", 4)]
public int[] pa = new System.Int32[4];
[DNAFieldAttribute(3, "float", "w[4]", 4)]
public float[] w = new System.Single[4];
[DNAFieldAttribute(4, "float", "fuv[4]", 4)]
public float[] fuv = new System.Single[4];
[DNAFieldAttribute(5, "float", "foffset", 4)]
public float foffset;
[DNAFieldAttribute(6, "char", "_pad0[4]", 1)]
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;