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,12 +11,18 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class LightProbeObjectCache {
[DNAFieldAttribute(0, "int", "cache_type", 4)]
public int cache_type;
[DNAFieldAttribute(1, "char", "shared", 1)]
public char shared;
[DNAFieldAttribute(2, "char", "dirty", 1)]
public char dirty;
[DNAFieldAttribute(3, "char", "_pad0[2]", 1)]
public char[] _pad0 = new System.Char[2];
[DNAFieldAttribute(4, "LightProbeGridCacheFrame", "*grid_static_cache", 168)]
public LightProbeGridCacheFrame ptr_grid_static_cache;
public LightProbeObjectCache(int cache_type, char shared, char dirty, char[] _pad0, LightProbeGridCacheFrame ptr_grid_static_cache) {
this.cache_type = cache_type;