36 lines
1.2 KiB
C#
36 lines
1.2 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 System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
using BlendFile;
|
|
|
|
[DNAClassAttribute(646, "NodeTexMusgrave")]
|
|
public struct NodeTexMusgrave {
|
|
[DNAFieldAttribute(0, "NodeTexBase", "base", "NodeTexBase", 960)]
|
|
public NodeTexBase @base;
|
|
[DNAFieldAttribute(1, "int", "musgrave_type", "int", 4)]
|
|
public int musgrave_type;
|
|
[DNAFieldAttribute(2, "int", "dimensions", "int", 4)]
|
|
public int dimensions;
|
|
public NodeTexMusgrave() {
|
|
this.@base = default;
|
|
this.musgrave_type = default;
|
|
this.dimensions = default;
|
|
}
|
|
public NodeTexMusgrave(NodeTexBase @base, int musgrave_type, int dimensions) {
|
|
this.@base = @base;
|
|
this.musgrave_type = musgrave_type;
|
|
this.dimensions = dimensions;
|
|
}
|
|
}
|
|
}
|