Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

@@ -15,29 +15,29 @@ namespace BlendFile.DNA {
[DNAClassAttribute(355, "LightCacheTexture", 32)]
public class LightCacheTexture {
[DNAFieldAttribute(0, "GPUTexture", "*tex", "GPUTexture", 8, true, 0)]
public GPUTexture ptr_tex;
[DNAFieldAttribute(1, "char", "*data", "char", 8, true, 8)]
public char ptr_data;
[DNAFieldAttribute(2, "int", "tex_size[3]", "System.Int32[]", 12, false, 16)]
[DNAFieldAttribute(8, "GPUTexture", 0, "*tex", "GPUTexture", true, 0)]
public GPUTexture tex;
[DNAFieldAttribute(8, "char", 1, "*data", "char", true, 8)]
public char data;
[DNAFieldAttribute(12, "int", 2, "tex_size[3]", "System.Int32[]", false, 16)]
public int[] tex_size = new System.Int32[3];
[DNAFieldAttribute(3, "char", "data_type", "char", 1, false, 28)]
[DNAFieldAttribute(1, "char", 3, "data_type", "char", false, 28)]
public char data_type;
[DNAFieldAttribute(4, "char", "components", "char", 1, false, 29)]
[DNAFieldAttribute(1, "char", 4, "components", "char", false, 29)]
public char components;
[DNAFieldAttribute(5, "char", "_pad[2]", "System.Char[]", 2, false, 30)]
[DNAFieldAttribute(2, "char", 5, "_pad[2]", "System.Char[]", false, 30)]
public char[] _pad = new System.Char[2];
public LightCacheTexture() {
this.ptr_tex = default;
this.ptr_data = default;
this.tex = default;
this.data = default;
this.tex_size = default;
this.data_type = default;
this.components = default;
this._pad = default;
}
public LightCacheTexture(GPUTexture ptr_tex, char ptr_data, int[] tex_size, char data_type, char components, char[] _pad) {
this.ptr_tex = ptr_tex;
this.ptr_data = ptr_data;
public LightCacheTexture(GPUTexture tex, char data, int[] tex_size, char data_type, char components, char[] _pad) {
this.tex = tex;
this.data = data;
this.tex_size = tex_size;
this.data_type = data_type;
this.components = components;