Files
BlenderSharp/BlendFile/DNA/NodeTexVoronoi.cs
2025-01-22 17:40:14 +01:00

35 lines
1.1 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 BlendFile.CompatTypes;
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;
}
}
}