Added Type stubbing

This commit is contained in:
Samuele Lorefice
2025-01-22 17:56:49 +01:00
parent 2d6159e331
commit 9a949dbeab
112 changed files with 610 additions and 313 deletions

View File

@@ -16,10 +16,10 @@ namespace BlendFile.DNA {
public struct NodeTexNoise {
public NodeTexBase @base;
public int dimensions;
public uchar type;
public uchar normalize;
public byte type;
public byte normalize;
public char[] _pad = new System.Char[2];
public NodeTexNoise(NodeTexBase @base, int dimensions, uchar type, uchar normalize, char[] _pad) {
public NodeTexNoise(NodeTexBase @base, int dimensions, byte type, byte normalize, char[] _pad) {
this.@base = @base;
this.dimensions = dimensions;
this.type = type;