//------------------------------------------------------------------------------ // // 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; [DNAClassAttribute(642, "NodeTexGabor")] public struct NodeTexGabor { [DNAFieldAttribute(0, "NodeTexBase", "base", "NodeTexBase", 960, false)] public NodeTexBase @base; [DNAFieldAttribute(1, "char", "type", "char", 1, false)] public char type; [DNAFieldAttribute(2, "char", "_pad[7]", "System.Char[]", 7, false)] public char[] _pad = new System.Char[7]; public NodeTexGabor() { this.@base = default; this.type = default; this._pad = default; } public NodeTexGabor(NodeTexBase @base, char type, char[] _pad) { this.@base = @base; this.type = type; this._pad = _pad; } } }