28 lines
844 B
C#
28 lines
844 B
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(357, "LightProbeBakingData", 8)]
|
|
public class LightProbeBakingData {
|
|
[DNAFieldAttribute(4, "float", "*validity", "float", 8, true, 0)]
|
|
public float ptr_validity;
|
|
public LightProbeBakingData() {
|
|
this.ptr_validity = default;
|
|
}
|
|
public LightProbeBakingData(float ptr_validity) {
|
|
this.ptr_validity = ptr_validity;
|
|
}
|
|
}
|
|
}
|