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,14 +11,22 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class SwirlShaderFxData {
[DNAFieldAttribute(0, "ShaderFxData", "shaderfx", 104)]
public ShaderFxData shaderfx;
[DNAFieldAttribute(1, "Object", "*object", 1160)]
public Object ptr_object;
[DNAFieldAttribute(2, "int", "flag", 4)]
public int flag;
[DNAFieldAttribute(3, "int", "radius", 4)]
public int radius;
[DNAFieldAttribute(4, "float", "angle", 4)]
public float angle;
[DNAFieldAttribute(5, "int", "transparent", 4)]
public int transparent;
[DNAFieldAttribute(6, "ShaderFxData_Runtime", "runtime", 40)]
public ShaderFxData_Runtime runtime;
public SwirlShaderFxData(ShaderFxData shaderfx, Object ptr_object, int flag, int radius, float angle, int transparent, ShaderFxData_Runtime runtime) {
this.shaderfx = shaderfx;