104 lines
3.9 KiB
C#
104 lines
3.9 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
using System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
using BlendFile;
|
|
|
|
[DNAClassAttribute(608, "NodeBlurData")]
|
|
public struct NodeBlurData {
|
|
[DNAFieldAttribute(0, "short", "sizex", "short", 2, false)]
|
|
public short sizex;
|
|
[DNAFieldAttribute(1, "short", "sizey", "short", 2, false)]
|
|
public short sizey;
|
|
[DNAFieldAttribute(2, "short", "samples", "short", 2, false)]
|
|
public short samples;
|
|
[DNAFieldAttribute(3, "short", "maxspeed", "short", 2, false)]
|
|
public short maxspeed;
|
|
[DNAFieldAttribute(4, "short", "minspeed", "short", 2, false)]
|
|
public short minspeed;
|
|
[DNAFieldAttribute(5, "short", "relative", "short", 2, false)]
|
|
public short relative;
|
|
[DNAFieldAttribute(6, "short", "aspect", "short", 2, false)]
|
|
public short aspect;
|
|
[DNAFieldAttribute(7, "short", "curved", "short", 2, false)]
|
|
public short curved;
|
|
[DNAFieldAttribute(8, "float", "fac", "float", 4, false)]
|
|
public float fac;
|
|
[DNAFieldAttribute(9, "float", "percentx", "float", 4, false)]
|
|
public float percentx;
|
|
[DNAFieldAttribute(10, "float", "percenty", "float", 4, false)]
|
|
public float percenty;
|
|
[DNAFieldAttribute(11, "short", "filtertype", "short", 2, false)]
|
|
public short filtertype;
|
|
[DNAFieldAttribute(12, "char", "bokeh", "char", 1, false)]
|
|
public char bokeh;
|
|
[DNAFieldAttribute(13, "char", "gamma", "char", 1, false)]
|
|
public char gamma;
|
|
[DNAFieldAttribute(14, "int", "image_in_width", "int", 4, false)]
|
|
public int image_in_width;
|
|
[DNAFieldAttribute(15, "int", "image_in_height", "int", 4, false)]
|
|
public int image_in_height;
|
|
public NodeBlurData() {
|
|
this.sizex = default;
|
|
this.sizey = default;
|
|
this.samples = default;
|
|
this.maxspeed = default;
|
|
this.minspeed = default;
|
|
this.relative = default;
|
|
this.aspect = default;
|
|
this.curved = default;
|
|
this.fac = default;
|
|
this.percentx = default;
|
|
this.percenty = default;
|
|
this.filtertype = default;
|
|
this.bokeh = default;
|
|
this.gamma = default;
|
|
this.image_in_width = default;
|
|
this.image_in_height = default;
|
|
}
|
|
public NodeBlurData(
|
|
short sizex,
|
|
short sizey,
|
|
short samples,
|
|
short maxspeed,
|
|
short minspeed,
|
|
short relative,
|
|
short aspect,
|
|
short curved,
|
|
float fac,
|
|
float percentx,
|
|
float percenty,
|
|
short filtertype,
|
|
char bokeh,
|
|
char gamma,
|
|
int image_in_width,
|
|
int image_in_height) {
|
|
this.sizex = sizex;
|
|
this.sizey = sizey;
|
|
this.samples = samples;
|
|
this.maxspeed = maxspeed;
|
|
this.minspeed = minspeed;
|
|
this.relative = relative;
|
|
this.aspect = aspect;
|
|
this.curved = curved;
|
|
this.fac = fac;
|
|
this.percentx = percentx;
|
|
this.percenty = percenty;
|
|
this.filtertype = filtertype;
|
|
this.bokeh = bokeh;
|
|
this.gamma = gamma;
|
|
this.image_in_width = image_in_width;
|
|
this.image_in_height = image_in_height;
|
|
}
|
|
}
|
|
}
|