Files
BlenderSharp/BlendFile/DNA/NodeTexGabor.cs
2025-02-19 18:48:50 +01:00

36 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 System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(642, "NodeTexGabor", 968)]
public struct NodeTexGabor {
[DNAFieldAttribute(0, "NodeTexBase", "base", "NodeTexBase", 960, false)]
public NodeTexBase @base;
[DNAFieldAttribute(1, "char", "type", "char", 1, false)]
public char type;
[DNAFieldAttribute(2, "char", "_pad[7]", "System.Char[]", 7, false)]
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;
}
}
}