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