Regenerated all the files
This commit is contained in:
@@ -11,22 +11,38 @@ using System;
|
||||
|
||||
|
||||
namespace BlendFile.DNA {
|
||||
using BlendFile;
|
||||
|
||||
public struct LightGridCache {
|
||||
[DNAFieldAttribute(0, "float", "mat[4][4]", 4)]
|
||||
public float[,] mat = new System.Single[4,4];
|
||||
[DNAFieldAttribute(1, "int", "resolution[3]", 4)]
|
||||
public int[] resolution = new System.Int32[3];
|
||||
[DNAFieldAttribute(2, "int", "offset", 4)]
|
||||
public int offset;
|
||||
[DNAFieldAttribute(3, "float", "corner[3]", 4)]
|
||||
public float[] corner = new System.Single[3];
|
||||
[DNAFieldAttribute(4, "float", "attenuation_scale", 4)]
|
||||
public float attenuation_scale;
|
||||
[DNAFieldAttribute(5, "float", "increment_x[3]", 4)]
|
||||
public float[] increment_x = new System.Single[3];
|
||||
[DNAFieldAttribute(6, "float", "attenuation_bias", 4)]
|
||||
public float attenuation_bias;
|
||||
[DNAFieldAttribute(7, "float", "increment_y[3]", 4)]
|
||||
public float[] increment_y = new System.Single[3];
|
||||
[DNAFieldAttribute(8, "float", "level_bias", 4)]
|
||||
public float level_bias;
|
||||
[DNAFieldAttribute(9, "float", "increment_z[3]", 4)]
|
||||
public float[] increment_z = new System.Single[3];
|
||||
[DNAFieldAttribute(10, "float", "_pad4", 4)]
|
||||
public float _pad4;
|
||||
[DNAFieldAttribute(11, "float", "visibility_bias", 4)]
|
||||
public float visibility_bias;
|
||||
[DNAFieldAttribute(12, "float", "visibility_bleed", 4)]
|
||||
public float visibility_bleed;
|
||||
[DNAFieldAttribute(13, "float", "visibility_range", 4)]
|
||||
public float visibility_range;
|
||||
[DNAFieldAttribute(14, "float", "_pad5", 4)]
|
||||
public float _pad5;
|
||||
public LightGridCache(float[,] mat, int[] resolution, int offset, float[] corner, float attenuation_scale, float[] increment_x, float attenuation_bias, float[] increment_y, float level_bias, float[] increment_z, float _pad4, float visibility_bias, float visibility_bleed, float visibility_range, float _pad5) {
|
||||
this.mat = mat;
|
||||
|
||||
Reference in New Issue
Block a user