Files
BlenderSharp/BlendFile/DNA/LightCacheTexture.cs
2025-01-22 02:23:29 +01:00

21 lines
738 B
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class LightCacheTexture {
public GPUTexture ptr_tex;
public char ptr_data;
public int[] tex_size = new System.Int32[3];
public char data_type;
public char components;
public char[] _pad = new System.Char[2];
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;
this.tex_size = tex_size;
this.data_type = data_type;
this.components = components;
this._pad = _pad;
}
}
}