//------------------------------------------------------------------------------ // // 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(641, "NodeTexEnvironment")] public struct NodeTexEnvironment { [DNAFieldAttribute(0, "NodeTexBase", "base", "NodeTexBase", 960, false)] public NodeTexBase @base; [DNAFieldAttribute(1, "ImageUser", "iuser", "ImageUser", 40, false)] public ImageUser iuser; [DNAFieldAttribute(2, "int", "color_space", "int", 4, false)] public int color_space; [DNAFieldAttribute(3, "int", "projection", "int", 4, false)] public int projection; [DNAFieldAttribute(4, "int", "interpolation", "int", 4, false)] public int interpolation; [DNAFieldAttribute(5, "char", "_pad[4]", "System.Char[]", 4, false)] public char[] _pad = new System.Char[4]; public NodeTexEnvironment() { this.@base = default; this.iuser = default; this.color_space = default; this.projection = default; this.interpolation = default; this._pad = default; } public NodeTexEnvironment(NodeTexBase @base, ImageUser iuser, int color_space, int projection, int interpolation, char[] _pad) { this.@base = @base; this.iuser = iuser; this.color_space = color_space; this.projection = projection; this.interpolation = interpolation; this._pad = _pad; } } }