Files
BlenderSharp/BlendFile/DNA/NodeTexBrick.cs
Samuele Lorefice 0674e6b136 - Modified DNAClassAttribute to also support usage on structs
- Added auto generation of DNAClass attributes on file generation
- Regenerated all files
2025-01-23 16:15:50 +01:00

37 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(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(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;
}
}
}