57 lines
2.5 KiB
C#
57 lines
2.5 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;
|
|
|
|
public class LightProbeGridCacheFrame {
|
|
[DNAFieldAttribute(0, "int", "size[3]", 4)]
|
|
public int[] size = new System.Int32[3];
|
|
[DNAFieldAttribute(1, "int", "data_layout", 4)]
|
|
public int data_layout;
|
|
[DNAFieldAttribute(2, "int", "block_len", 4)]
|
|
public int block_len;
|
|
[DNAFieldAttribute(3, "int", "block_size", 4)]
|
|
public int block_size;
|
|
[DNAFieldAttribute(4, "LightProbeBlockData", "*block_infos", 16)]
|
|
public LightProbeBlockData ptr_block_infos;
|
|
[DNAFieldAttribute(5, "LightProbeBakingData", "baking", 48)]
|
|
public LightProbeBakingData baking;
|
|
[DNAFieldAttribute(6, "LightProbeIrradianceData", "irradiance", 32)]
|
|
public LightProbeIrradianceData irradiance;
|
|
[DNAFieldAttribute(7, "LightProbeVisibilityData", "visibility", 32)]
|
|
public LightProbeVisibilityData visibility;
|
|
[DNAFieldAttribute(8, "LightProbeConnectivityData", "connectivity", 8)]
|
|
public LightProbeConnectivityData connectivity;
|
|
[DNAFieldAttribute(9, "char", "_pad[4]", 1)]
|
|
public char[] _pad = new System.Char[4];
|
|
[DNAFieldAttribute(10, "int", "surfels_len", 4)]
|
|
public int surfels_len;
|
|
[DNAFieldAttribute(11, "void", "*surfels", 0)]
|
|
public object ptr_surfels;
|
|
public LightProbeGridCacheFrame(int[] size, int data_layout, int block_len, int block_size, LightProbeBlockData ptr_block_infos, LightProbeBakingData baking, LightProbeIrradianceData irradiance, LightProbeVisibilityData visibility, LightProbeConnectivityData connectivity, char[] _pad, int surfels_len, object ptr_surfels) {
|
|
this.size = size;
|
|
this.data_layout = data_layout;
|
|
this.block_len = block_len;
|
|
this.block_size = block_size;
|
|
this.ptr_block_infos = ptr_block_infos;
|
|
this.baking = baking;
|
|
this.irradiance = irradiance;
|
|
this.visibility = visibility;
|
|
this.connectivity = connectivity;
|
|
this._pad = _pad;
|
|
this.surfels_len = surfels_len;
|
|
this.ptr_surfels = ptr_surfels;
|
|
}
|
|
}
|
|
}
|