Files
BlenderSharp/BlendFile/DNA/NodeSunBeams.cs
2025-03-04 18:48:04 +01:00

32 lines
1.0 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;
[DNAClassAttribute(668, "NodeSunBeams", 12)]
public class NodeSunBeams {
[DNAFieldAttribute(8, "float", 0, "source[2]", "System.Single[]", false, 0)]
public float[] source = new System.Single[2];
[DNAFieldAttribute(4, "float", 1, "ray_length", "float", false, 8)]
public float ray_length;
public NodeSunBeams() {
this.source = default;
this.ray_length = default;
}
public NodeSunBeams(float[] source, float ray_length) {
this.source = source;
this.ray_length = ray_length;
}
}
}