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,15 +11,24 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public struct NodeTwoXYs {
[DNAFieldAttribute(0, "short", "x1", 2)]
public short x1;
[DNAFieldAttribute(1, "short", "x2", 2)]
public short x2;
[DNAFieldAttribute(2, "short", "y1", 2)]
public short y1;
[DNAFieldAttribute(3, "short", "y2", 2)]
public short y2;
[DNAFieldAttribute(4, "float", "fac_x1", 4)]
public float fac_x1;
[DNAFieldAttribute(5, "float", "fac_x2", 4)]
public float fac_x2;
[DNAFieldAttribute(6, "float", "fac_y1", 4)]
public float fac_y1;
[DNAFieldAttribute(7, "float", "fac_y2", 4)]
public float fac_y2;
public NodeTwoXYs(short x1, short x2, short y1, short y2, float fac_x1, float fac_x2, float fac_y1, float fac_y2) {
this.x1 = x1;