//------------------------------------------------------------------------------ // // 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 { public struct NodeTexVoronoi { public NodeTexBase @base; public int dimensions; public int feature; public int distance; public int normalize; public int coloring; public char[] _pad = new System.Char[4]; public NodeTexVoronoi(NodeTexBase @base, int dimensions, int feature, int distance, int normalize, int coloring, char[] _pad) { this.@base = @base; this.dimensions = dimensions; this.feature = feature; this.distance = distance; this.normalize = normalize; this.coloring = coloring; this._pad = _pad; } } }