Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

@@ -14,16 +14,16 @@ namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(777, "ParticleKey", 56)]
public struct ParticleKey {
[DNAFieldAttribute(0, "float", "co[3]", "System.Single[]", 12, false, 0)]
public class ParticleKey {
[DNAFieldAttribute(12, "float", 0, "co[3]", "System.Single[]", false, 0)]
public float[] co = new System.Single[3];
[DNAFieldAttribute(1, "float", "vel[3]", "System.Single[]", 12, false, 12)]
[DNAFieldAttribute(12, "float", 1, "vel[3]", "System.Single[]", false, 12)]
public float[] vel = new System.Single[3];
[DNAFieldAttribute(2, "float", "rot[4]", "System.Single[]", 16, false, 24)]
[DNAFieldAttribute(16, "float", 2, "rot[4]", "System.Single[]", false, 24)]
public float[] rot = new System.Single[4];
[DNAFieldAttribute(3, "float", "ave[3]", "System.Single[]", 12, false, 40)]
[DNAFieldAttribute(12, "float", 3, "ave[3]", "System.Single[]", false, 40)]
public float[] ave = new System.Single[3];
[DNAFieldAttribute(4, "float", "time", "float", 4, false, 52)]
[DNAFieldAttribute(4, "float", 4, "time", "float", false, 52)]
public float time;
public ParticleKey() {
this.co = default;