regenerated files

This commit is contained in:
mm00
2025-02-18 18:16:57 +01:00
parent 305186b2a9
commit bc3ac0ad86
937 changed files with 9598 additions and 9586 deletions

View File

@@ -15,39 +15,39 @@ namespace BlendFile.DNA {
[DNAClassAttribute(95, "BezTriple")]
public struct BezTriple {
[DNAFieldAttribute(0, "float", "vec[3][3]", 4)]
[DNAFieldAttribute(0, "float", "vec[3][3]", "System.Single[,]", 4)]
public float[,] vec = new System.Single[3,3];
[DNAFieldAttribute(1, "float", "alfa", 4)]
[DNAFieldAttribute(1, "float", "alfa", "float", 4)]
public float alfa;
[DNAFieldAttribute(2, "float", "weight", 4)]
[DNAFieldAttribute(2, "float", "weight", "float", 4)]
public float weight;
[DNAFieldAttribute(3, "float", "radius", 4)]
[DNAFieldAttribute(3, "float", "radius", "float", 4)]
public float radius;
[DNAFieldAttribute(4, "char", "ipo", 1)]
[DNAFieldAttribute(4, "char", "ipo", "char", 1)]
public char ipo;
[DNAFieldAttribute(5, "uchar", "h1", 1)]
[DNAFieldAttribute(5, "uchar", "h1", "uchar", 1)]
public byte h1;
[DNAFieldAttribute(6, "uchar", "h2", 1)]
[DNAFieldAttribute(6, "uchar", "h2", "uchar", 1)]
public byte h2;
[DNAFieldAttribute(7, "uchar", "f1", 1)]
[DNAFieldAttribute(7, "uchar", "f1", "uchar", 1)]
public byte f1;
[DNAFieldAttribute(8, "uchar", "f2", 1)]
[DNAFieldAttribute(8, "uchar", "f2", "uchar", 1)]
public byte f2;
[DNAFieldAttribute(9, "uchar", "f3", 1)]
[DNAFieldAttribute(9, "uchar", "f3", "uchar", 1)]
public byte f3;
[DNAFieldAttribute(10, "char", "hide", 1)]
[DNAFieldAttribute(10, "char", "hide", "char", 1)]
public char hide;
[DNAFieldAttribute(11, "char", "easing", 1)]
[DNAFieldAttribute(11, "char", "easing", "char", 1)]
public char easing;
[DNAFieldAttribute(12, "float", "back", 4)]
[DNAFieldAttribute(12, "float", "back", "float", 4)]
public float back;
[DNAFieldAttribute(13, "float", "amplitude", 4)]
[DNAFieldAttribute(13, "float", "amplitude", "float", 4)]
public float amplitude;
[DNAFieldAttribute(14, "float", "period", 4)]
[DNAFieldAttribute(14, "float", "period", "float", 4)]
public float period;
[DNAFieldAttribute(15, "char", "auto_handle_type", 1)]
[DNAFieldAttribute(15, "char", "auto_handle_type", "char", 1)]
public char auto_handle_type;
[DNAFieldAttribute(16, "char", "_pad[3]", 1)]
[DNAFieldAttribute(16, "char", "_pad[3]", "System.Char[]", 1)]
public char[] _pad = new System.Char[3];
public BezTriple() {
this.vec = default;