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 struct NodeTexGabor {
|
|
[DNAFieldAttribute(0, "NodeTexBase", "base", "NodeTexBase", 960, false, 0)]
|
|
public NodeTexBase @base;
|
|
[DNAFieldAttribute(1, "char", "type", "char", 1, false, 960)]
|
|
public char type;
|
|
[DNAFieldAttribute(2, "char", "_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;
|
|
}
|
|
}
|
|
}
|