Regenerated codefiles
This commit is contained in:
@@ -15,34 +15,34 @@ namespace BlendFile.DNA {
|
||||
|
||||
[DNAClassAttribute(356, "LightCache", 128)]
|
||||
public class LightCache {
|
||||
[DNAFieldAttribute(0, "int", "flag", "int", 4, false, 0)]
|
||||
[DNAFieldAttribute(4, "int", 0, "flag", "int", false, 0)]
|
||||
public int flag;
|
||||
[DNAFieldAttribute(1, "int", "version", "int", 4, false, 4)]
|
||||
[DNAFieldAttribute(4, "int", 1, "version", "int", false, 4)]
|
||||
public int version;
|
||||
[DNAFieldAttribute(2, "int", "type", "int", 4, false, 8)]
|
||||
[DNAFieldAttribute(4, "int", 2, "type", "int", false, 8)]
|
||||
public int type;
|
||||
[DNAFieldAttribute(3, "int", "cube_len", "int", 4, false, 12)]
|
||||
[DNAFieldAttribute(4, "int", 3, "cube_len", "int", false, 12)]
|
||||
public int cube_len;
|
||||
[DNAFieldAttribute(4, "int", "grid_len", "int", 4, false, 16)]
|
||||
[DNAFieldAttribute(4, "int", 4, "grid_len", "int", false, 16)]
|
||||
public int grid_len;
|
||||
[DNAFieldAttribute(5, "int", "mips_len", "int", 4, false, 20)]
|
||||
[DNAFieldAttribute(4, "int", 5, "mips_len", "int", false, 20)]
|
||||
public int mips_len;
|
||||
[DNAFieldAttribute(6, "int", "vis_res", "int", 4, false, 24)]
|
||||
[DNAFieldAttribute(4, "int", 6, "vis_res", "int", false, 24)]
|
||||
public int vis_res;
|
||||
[DNAFieldAttribute(7, "int", "ref_res", "int", 4, false, 28)]
|
||||
[DNAFieldAttribute(4, "int", 7, "ref_res", "int", false, 28)]
|
||||
public int ref_res;
|
||||
[DNAFieldAttribute(8, "char", "_pad[4][2]", "System.Char[,]", 8, false, 32)]
|
||||
[DNAFieldAttribute(8, "char", 8, "_pad[4][2]", "System.Char[,]", false, 32)]
|
||||
public char[,] _pad = new System.Char[4,2];
|
||||
[DNAFieldAttribute(9, "LightCacheTexture", "grid_tx", "LightCacheTexture", 32, false, 40)]
|
||||
[DNAFieldAttribute(32, "LightCacheTexture", 9, "grid_tx", "LightCacheTexture", false, 40)]
|
||||
public LightCacheTexture grid_tx;
|
||||
[DNAFieldAttribute(10, "LightCacheTexture", "cube_tx", "LightCacheTexture", 32, false, 72)]
|
||||
[DNAFieldAttribute(32, "LightCacheTexture", 10, "cube_tx", "LightCacheTexture", false, 72)]
|
||||
public LightCacheTexture cube_tx;
|
||||
[DNAFieldAttribute(11, "LightCacheTexture", "*cube_mips", "LightCacheTexture", 8, true, 104)]
|
||||
public LightCacheTexture ptr_cube_mips;
|
||||
[DNAFieldAttribute(12, "LightProbeCache", "*cube_data", "LightProbeCache", 8, true, 112)]
|
||||
public LightProbeCache ptr_cube_data;
|
||||
[DNAFieldAttribute(13, "LightGridCache", "*grid_data", "LightGridCache", 8, true, 120)]
|
||||
public LightGridCache ptr_grid_data;
|
||||
[DNAFieldAttribute(8, "LightCacheTexture", 11, "*cube_mips", "LightCacheTexture", true, 104)]
|
||||
public LightCacheTexture cube_mips;
|
||||
[DNAFieldAttribute(8, "LightProbeCache", 12, "*cube_data", "LightProbeCache", true, 112)]
|
||||
public LightProbeCache cube_data;
|
||||
[DNAFieldAttribute(8, "LightGridCache", 13, "*grid_data", "LightGridCache", true, 120)]
|
||||
public LightGridCache grid_data;
|
||||
public LightCache() {
|
||||
this.flag = default;
|
||||
this.version = default;
|
||||
@@ -55,11 +55,11 @@ namespace BlendFile.DNA {
|
||||
this._pad = default;
|
||||
this.grid_tx = default;
|
||||
this.cube_tx = default;
|
||||
this.ptr_cube_mips = default;
|
||||
this.ptr_cube_data = default;
|
||||
this.ptr_grid_data = default;
|
||||
this.cube_mips = default;
|
||||
this.cube_data = default;
|
||||
this.grid_data = default;
|
||||
}
|
||||
public LightCache(int flag, int version, int type, int cube_len, int grid_len, int mips_len, int vis_res, int ref_res, char[,] _pad, LightCacheTexture grid_tx, LightCacheTexture cube_tx, LightCacheTexture ptr_cube_mips, LightProbeCache ptr_cube_data, LightGridCache ptr_grid_data) {
|
||||
public LightCache(int flag, int version, int type, int cube_len, int grid_len, int mips_len, int vis_res, int ref_res, char[,] _pad, LightCacheTexture grid_tx, LightCacheTexture cube_tx, LightCacheTexture cube_mips, LightProbeCache cube_data, LightGridCache grid_data) {
|
||||
this.flag = flag;
|
||||
this.version = version;
|
||||
this.type = type;
|
||||
@@ -71,9 +71,9 @@ namespace BlendFile.DNA {
|
||||
this._pad = _pad;
|
||||
this.grid_tx = grid_tx;
|
||||
this.cube_tx = cube_tx;
|
||||
this.ptr_cube_mips = ptr_cube_mips;
|
||||
this.ptr_cube_data = ptr_cube_data;
|
||||
this.ptr_grid_data = ptr_grid_data;
|
||||
this.cube_mips = cube_mips;
|
||||
this.cube_data = cube_data;
|
||||
this.grid_data = grid_data;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user