Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,12 +11,18 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
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;