Generated new code and added initial data handling

This commit is contained in:
mm00
2025-01-27 19:24:50 +01:00
parent ebcc629feb
commit 146a3992ce
940 changed files with 11560 additions and 9 deletions

View File

@@ -43,6 +43,22 @@ namespace BlendFile.DNA {
public LightProbeCache ptr_cube_data;
[DNAFieldAttribute(13, "LightGridCache", "*grid_data", 160)]
public LightGridCache ptr_grid_data;
public LightCache() {
this.flag = default;
this.version = default;
this.type = default;
this.cube_len = default;
this.grid_len = default;
this.mips_len = default;
this.vis_res = default;
this.ref_res = default;
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;
}
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) {
this.flag = flag;
this.version = version;