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,13 +11,20 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public struct HairKey {
[DNAFieldAttribute(0, "float", "co[3]", 4)]
public float[] co = new System.Single[3];
[DNAFieldAttribute(1, "float", "time", 4)]
public float time;
[DNAFieldAttribute(2, "float", "weight", 4)]
public float weight;
[DNAFieldAttribute(3, "short", "editflag", 2)]
public short editflag;
[DNAFieldAttribute(4, "char", "_pad[2]", 1)]
public char[] _pad = new System.Char[2];
[DNAFieldAttribute(5, "float", "world_co[3]", 4)]
public float[] world_co = new System.Single[3];
public HairKey(float[] co, float time, float weight, short editflag, char[] _pad, float[] world_co) {
this.co = co;