//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using System; namespace BlendFile.DNA { using BlendFile; public struct NodeDefocus { [DNAFieldAttribute(0, "char", "bktype", 1)] public char bktype; [DNAFieldAttribute(1, "char", "_pad0", 1)] public char _pad0; [DNAFieldAttribute(2, "char", "preview", 1)] public char preview; [DNAFieldAttribute(3, "char", "gamco", 1)] public char gamco; [DNAFieldAttribute(4, "short", "samples", 2)] public short samples; [DNAFieldAttribute(5, "short", "no_zbuf", 2)] public short no_zbuf; [DNAFieldAttribute(6, "float", "fstop", 4)] public float fstop; [DNAFieldAttribute(7, "float", "maxblur", 4)] public float maxblur; [DNAFieldAttribute(8, "float", "bthresh", 4)] public float bthresh; [DNAFieldAttribute(9, "float", "scale", 4)] public float scale; [DNAFieldAttribute(10, "float", "rotation", 4)] public float rotation; [DNAFieldAttribute(11, "char", "_pad1[4]", 1)] public char[] _pad1 = new System.Char[4]; public NodeDefocus(char bktype, char _pad0, char preview, char gamco, short samples, short no_zbuf, float fstop, float maxblur, float bthresh, float scale, float rotation, char[] _pad1) { this.bktype = bktype; this._pad0 = _pad0; this.preview = preview; this.gamco = gamco; this.samples = samples; this.no_zbuf = no_zbuf; this.fstop = fstop; this.maxblur = maxblur; this.bthresh = bthresh; this.scale = scale; this.rotation = rotation; this._pad1 = _pad1; } } }