Files
BlenderSharp/BlendFile/DNA/LightProbeObjectCache.cs
2025-02-19 17:07:50 +01:00

44 lines
1.7 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(363, "LightProbeObjectCache")]
public class LightProbeObjectCache {
[DNAFieldAttribute(0, "int", "cache_type", "int", 4, false)]
public int cache_type;
[DNAFieldAttribute(1, "char", "shared", "char", 1, false)]
public char shared;
[DNAFieldAttribute(2, "char", "dirty", "char", 1, false)]
public char dirty;
[DNAFieldAttribute(3, "char", "_pad0[2]", "System.Char[]", 2, false)]
public char[] _pad0 = new System.Char[2];
[DNAFieldAttribute(4, "LightProbeGridCacheFrame", "*grid_static_cache", "LightProbeGridCacheFrame", 4, true)]
public LightProbeGridCacheFrame ptr_grid_static_cache;
public LightProbeObjectCache() {
this.cache_type = default;
this.shared = default;
this.dirty = default;
this._pad0 = default;
this.ptr_grid_static_cache = default;
}
public LightProbeObjectCache(int cache_type, char shared, char dirty, char[] _pad0, LightProbeGridCacheFrame ptr_grid_static_cache) {
this.cache_type = cache_type;
this.shared = shared;
this.dirty = dirty;
this._pad0 = _pad0;
this.ptr_grid_static_cache = ptr_grid_static_cache;
}
}
}