Regenerated all the files
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user