//------------------------------------------------------------------------------ // // 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(832, "SceneDisplay", 984)] public class SceneDisplay { [DNAArrayAttribute(12, "float", 0, "light_direction[3]", "System.Single[]", 3, 0)] public float[] light_direction = new System.Single[3]; [DNAFieldAttribute(4, "float", 1, "shadow_shift", "float", false, 12)] public float shadow_shift; [DNAFieldAttribute(4, "float", 2, "shadow_focus", "float", false, 16)] public float shadow_focus; [DNAFieldAttribute(4, "float", 3, "matcap_ssao_distance", "float", false, 20)] public float matcap_ssao_distance; [DNAFieldAttribute(4, "float", 4, "matcap_ssao_attenuation", "float", false, 24)] public float matcap_ssao_attenuation; [DNAFieldAttribute(4, "int", 5, "matcap_ssao_samples", "int", false, 28)] public int matcap_ssao_samples; [DNAFieldAttribute(1, "char", 6, "viewport_aa", "char", false, 32)] public char viewport_aa; [DNAFieldAttribute(1, "char", 7, "render_aa", "char", false, 33)] public char render_aa; [DNAArrayAttribute(6, "char", 8, "_pad[6]", "System.Char[]", 6, 34)] public char[] _pad = new System.Char[6]; [DNAFieldAttribute(944, "View3DShading", 9, "shading", "View3DShading", false, 40)] public View3DShading shading; public SceneDisplay() { this.light_direction = default; this.shadow_shift = default; this.shadow_focus = default; this.matcap_ssao_distance = default; this.matcap_ssao_attenuation = default; this.matcap_ssao_samples = default; this.viewport_aa = default; this.render_aa = default; this._pad = default; this.shading = default; } public SceneDisplay(float[] light_direction, float shadow_shift, float shadow_focus, float matcap_ssao_distance, float matcap_ssao_attenuation, int matcap_ssao_samples, char viewport_aa, char render_aa, char[] _pad, View3DShading shading) { this.light_direction = light_direction; this.shadow_shift = shadow_shift; this.shadow_focus = shadow_focus; this.matcap_ssao_distance = matcap_ssao_distance; this.matcap_ssao_attenuation = matcap_ssao_attenuation; this.matcap_ssao_samples = matcap_ssao_samples; this.viewport_aa = viewport_aa; this.render_aa = render_aa; this._pad = _pad; this.shading = shading; } } }