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

19 lines
596 B
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public struct SolidLight {
public int flag;
public float smooth;
public float[] col = new System.Single[4];
public float[] spec = new System.Single[4];
public float[] vec = new System.Single[4];
public SolidLight(int flag, float smooth, float[] col, float[] spec, float[] vec) {
this.flag = flag;
this.smooth = smooth;
this.col = col;
this.spec = spec;
this.vec = vec;
}
}
}