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