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,13 +11,20 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public struct FMod_Noise {
[DNAFieldAttribute(0, "float", "size", 4)]
public float size;
[DNAFieldAttribute(1, "float", "strength", 4)]
public float strength;
[DNAFieldAttribute(2, "float", "phase", 4)]
public float phase;
[DNAFieldAttribute(3, "float", "offset", 4)]
public float offset;
[DNAFieldAttribute(4, "short", "depth", 2)]
public short depth;
[DNAFieldAttribute(5, "short", "modification", 2)]
public short modification;
public FMod_Noise(float size, float strength, float phase, float offset, short depth, short modification) {
this.size = size;