Regenerated all the files
This commit is contained in:
@@ -11,15 +11,24 @@ using System;
|
||||
|
||||
|
||||
namespace BlendFile.DNA {
|
||||
using BlendFile;
|
||||
|
||||
public struct NodeDBlurData {
|
||||
[DNAFieldAttribute(0, "float", "center_x", 4)]
|
||||
public float center_x;
|
||||
[DNAFieldAttribute(1, "float", "center_y", 4)]
|
||||
public float center_y;
|
||||
[DNAFieldAttribute(2, "float", "distance", 4)]
|
||||
public float distance;
|
||||
[DNAFieldAttribute(3, "float", "angle", 4)]
|
||||
public float angle;
|
||||
[DNAFieldAttribute(4, "float", "spin", 4)]
|
||||
public float spin;
|
||||
[DNAFieldAttribute(5, "float", "zoom", 4)]
|
||||
public float zoom;
|
||||
[DNAFieldAttribute(6, "short", "iter", 2)]
|
||||
public short iter;
|
||||
[DNAFieldAttribute(7, "char", "_pad[2]", 1)]
|
||||
public char[] _pad = new System.Char[2];
|
||||
public NodeDBlurData(float center_x, float center_y, float distance, float angle, float spin, float zoom, short iter, char[] _pad) {
|
||||
this.center_x = center_x;
|
||||
|
||||
Reference in New Issue
Block a user