19 lines
602 B
C#
19 lines
602 B
C#
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
|
|
namespace BlendFile.DNA {
|
|
|
|
public struct NodeTexNoise {
|
|
public NodeTexBase @base;
|
|
public int dimensions;
|
|
public uchar type;
|
|
public uchar normalize;
|
|
public char[] _pad = new System.Char[2];
|
|
public NodeTexNoise(NodeTexBase @base, int dimensions, uchar type, uchar normalize, char[] _pad) {
|
|
this.@base = @base;
|
|
this.dimensions = dimensions;
|
|
this.type = type;
|
|
this.normalize = normalize;
|
|
this._pad = _pad;
|
|
}
|
|
}
|
|
}
|