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 struct LightProbeCache {
[DNAFieldAttribute(0, "float", "position[3]", 4)]
public float[] position = new System.Single[3];
[DNAFieldAttribute(1, "float", "parallax_type", 4)]
public float parallax_type;
[DNAFieldAttribute(2, "float", "attenuation_fac", 4)]
public float attenuation_fac;
[DNAFieldAttribute(3, "float", "attenuation_type", 4)]
public float attenuation_type;
[DNAFieldAttribute(4, "float", "_pad3[2]", 4)]
public float[] _pad3 = new System.Single[2];
[DNAFieldAttribute(5, "float", "attenuationmat[4][4]", 4)]
public float[,] attenuationmat = new System.Single[4,4];
[DNAFieldAttribute(6, "float", "parallaxmat[4][4]", 4)]
public float[,] parallaxmat = new System.Single[4,4];
public LightProbeCache(float[] position, float parallax_type, float attenuation_fac, float attenuation_type, float[] _pad3, float[,] attenuationmat, float[,] parallaxmat) {
this.position = position;