//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using System; namespace BlendFile.DNA { using BlendFile; [DNAClassAttribute(637, "NodeTexSky", 1024)] public class NodeTexSky { [DNAFieldAttribute(960, "NodeTexBase", 0, "base", "NodeTexBase", false, 0)] public NodeTexBase @base; [DNAFieldAttribute(4, "int", 1, "sky_model", "int", false, 960)] public int sky_model; [DNAFieldAttribute(12, "float", 2, "sun_direction[3]", "System.Single[]", false, 964)] public float[] sun_direction = new System.Single[3]; [DNAFieldAttribute(4, "float", 3, "turbidity", "float", false, 976)] public float turbidity; [DNAFieldAttribute(4, "float", 4, "ground_albedo", "float", false, 980)] public float ground_albedo; [DNAFieldAttribute(4, "float", 5, "sun_size", "float", false, 984)] public float sun_size; [DNAFieldAttribute(4, "float", 6, "sun_intensity", "float", false, 988)] public float sun_intensity; [DNAFieldAttribute(4, "float", 7, "sun_elevation", "float", false, 992)] public float sun_elevation; [DNAFieldAttribute(4, "float", 8, "sun_rotation", "float", false, 996)] public float sun_rotation; [DNAFieldAttribute(4, "float", 9, "altitude", "float", false, 1000)] public float altitude; [DNAFieldAttribute(4, "float", 10, "air_density", "float", false, 1004)] public float air_density; [DNAFieldAttribute(4, "float", 11, "dust_density", "float", false, 1008)] public float dust_density; [DNAFieldAttribute(4, "float", 12, "ozone_density", "float", false, 1012)] public float ozone_density; [DNAFieldAttribute(1, "char", 13, "sun_disc", "char", false, 1016)] public char sun_disc; [DNAFieldAttribute(7, "char", 14, "_pad[7]", "System.Char[]", false, 1017)] public char[] _pad = new System.Char[7]; public NodeTexSky() { this.@base = default; this.sky_model = default; this.sun_direction = default; this.turbidity = default; this.ground_albedo = default; this.sun_size = default; this.sun_intensity = default; this.sun_elevation = default; this.sun_rotation = default; this.altitude = default; this.air_density = default; this.dust_density = default; this.ozone_density = default; this.sun_disc = default; this._pad = default; } public NodeTexSky(NodeTexBase @base, int sky_model, float[] sun_direction, float turbidity, float ground_albedo, float sun_size, float sun_intensity, float sun_elevation, float sun_rotation, float altitude, float air_density, float dust_density, float ozone_density, char sun_disc, char[] _pad) { this.@base = @base; this.sky_model = sky_model; this.sun_direction = sun_direction; this.turbidity = turbidity; this.ground_albedo = ground_albedo; this.sun_size = sun_size; this.sun_intensity = sun_intensity; this.sun_elevation = sun_elevation; this.sun_rotation = sun_rotation; this.altitude = altitude; this.air_density = air_density; this.dust_density = dust_density; this.ozone_density = ozone_density; this.sun_disc = sun_disc; this._pad = _pad; } } }