Files
BlenderSharp/BlendFile/DNA/NodeTexBrick.cs

44 lines
1.4 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(640, "NodeTexBrick")]
public struct NodeTexBrick {
[DNAFieldAttribute(0, "NodeTexBase", "base", 960)]
public NodeTexBase @base;
[DNAFieldAttribute(1, "int", "offset_freq", 4)]
public int offset_freq;
[DNAFieldAttribute(2, "int", "squash_freq", 4)]
public int squash_freq;
[DNAFieldAttribute(3, "float", "offset", 4)]
public float offset;
[DNAFieldAttribute(4, "float", "squash", 4)]
public float squash;
public NodeTexBrick() {
this.@base = default;
this.offset_freq = default;
this.squash_freq = default;
this.offset = default;
this.squash = default;
}
public NodeTexBrick(NodeTexBase @base, int offset_freq, int squash_freq, float offset, float squash) {
this.@base = @base;
this.offset_freq = offset_freq;
this.squash_freq = squash_freq;
this.offset = offset;
this.squash = squash;
}
}
}