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(642, "NodeTexGabor", 968)]
|
|
public class NodeTexGabor {
|
|
[DNAFieldAttribute(960, "NodeTexBase", 0, "base", "NodeTexBase", false, 0)]
|
|
public NodeTexBase @base;
|
|
[DNAFieldAttribute(1, "char", 1, "type", "char", false, 960)]
|
|
public char type;
|
|
[DNAArrayAttribute(7, "char", 2, "_pad[7]", "System.Char[]", 7, false, 961)]
|
|
public char[] _pad = new System.Char[7];
|
|
public NodeTexGabor() {
|
|
this.@base = default;
|
|
this.type = default;
|
|
this._pad = default;
|
|
}
|
|
public NodeTexGabor(NodeTexBase @base, char type, char[] _pad) {
|
|
this.@base = @base;
|
|
this.type = type;
|
|
this._pad = _pad;
|
|
}
|
|
}
|
|
}
|