Added memoryOffset value to DNAFieldAttribute, regenerated files.

This commit is contained in:
Samuele Lorefice
2025-02-20 21:00:55 +01:00
parent b171b65aa5
commit f383debd18
939 changed files with 9636 additions and 9605 deletions

View File

@@ -15,33 +15,33 @@ namespace BlendFile.DNA {
[DNAClassAttribute(356, "LightCache", 128)]
public class LightCache {
[DNAFieldAttribute(0, "int", "flag", "int", 4, false)]
[DNAFieldAttribute(0, "int", "flag", "int", 4, false, 0)]
public int flag;
[DNAFieldAttribute(1, "int", "version", "int", 4, false)]
[DNAFieldAttribute(1, "int", "version", "int", 4, false, 4)]
public int version;
[DNAFieldAttribute(2, "int", "type", "int", 4, false)]
[DNAFieldAttribute(2, "int", "type", "int", 4, false, 8)]
public int type;
[DNAFieldAttribute(3, "int", "cube_len", "int", 4, false)]
[DNAFieldAttribute(3, "int", "cube_len", "int", 4, false, 12)]
public int cube_len;
[DNAFieldAttribute(4, "int", "grid_len", "int", 4, false)]
[DNAFieldAttribute(4, "int", "grid_len", "int", 4, false, 16)]
public int grid_len;
[DNAFieldAttribute(5, "int", "mips_len", "int", 4, false)]
[DNAFieldAttribute(5, "int", "mips_len", "int", 4, false, 20)]
public int mips_len;
[DNAFieldAttribute(6, "int", "vis_res", "int", 4, false)]
[DNAFieldAttribute(6, "int", "vis_res", "int", 4, false, 24)]
public int vis_res;
[DNAFieldAttribute(7, "int", "ref_res", "int", 4, false)]
[DNAFieldAttribute(7, "int", "ref_res", "int", 4, false, 28)]
public int ref_res;
[DNAFieldAttribute(8, "char", "_pad[4][2]", "System.Char[,]", 8, false)]
[DNAFieldAttribute(8, "char", "_pad[4][2]", "System.Char[,]", 8, false, 32)]
public char[,] _pad = new System.Char[4,2];
[DNAFieldAttribute(9, "LightCacheTexture", "grid_tx", "LightCacheTexture", 32, false)]
[DNAFieldAttribute(9, "LightCacheTexture", "grid_tx", "LightCacheTexture", 32, false, 40)]
public LightCacheTexture grid_tx;
[DNAFieldAttribute(10, "LightCacheTexture", "cube_tx", "LightCacheTexture", 32, false)]
[DNAFieldAttribute(10, "LightCacheTexture", "cube_tx", "LightCacheTexture", 32, false, 72)]
public LightCacheTexture cube_tx;
[DNAFieldAttribute(11, "LightCacheTexture", "*cube_mips", "LightCacheTexture", 8, true)]
[DNAFieldAttribute(11, "LightCacheTexture", "*cube_mips", "LightCacheTexture", 8, true, 104)]
public LightCacheTexture ptr_cube_mips;
[DNAFieldAttribute(12, "LightProbeCache", "*cube_data", "LightProbeCache", 8, true)]
[DNAFieldAttribute(12, "LightProbeCache", "*cube_data", "LightProbeCache", 8, true, 112)]
public LightProbeCache ptr_cube_data;
[DNAFieldAttribute(13, "LightGridCache", "*grid_data", "LightGridCache", 8, true)]
[DNAFieldAttribute(13, "LightGridCache", "*grid_data", "LightGridCache", 8, true, 120)]
public LightGridCache ptr_grid_data;
public LightCache() {
this.flag = default;