Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,22 +11,38 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public struct NodeTexSky {
[DNAFieldAttribute(0, "NodeTexBase", "base", 960)]
public NodeTexBase @base;
[DNAFieldAttribute(1, "int", "sky_model", 4)]
public int sky_model;
[DNAFieldAttribute(2, "float", "sun_direction[3]", 4)]
public float[] sun_direction = new System.Single[3];
[DNAFieldAttribute(3, "float", "turbidity", 4)]
public float turbidity;
[DNAFieldAttribute(4, "float", "ground_albedo", 4)]
public float ground_albedo;
[DNAFieldAttribute(5, "float", "sun_size", 4)]
public float sun_size;
[DNAFieldAttribute(6, "float", "sun_intensity", 4)]
public float sun_intensity;
[DNAFieldAttribute(7, "float", "sun_elevation", 4)]
public float sun_elevation;
[DNAFieldAttribute(8, "float", "sun_rotation", 4)]
public float sun_rotation;
[DNAFieldAttribute(9, "float", "altitude", 4)]
public float altitude;
[DNAFieldAttribute(10, "float", "air_density", 4)]
public float air_density;
[DNAFieldAttribute(11, "float", "dust_density", 4)]
public float dust_density;
[DNAFieldAttribute(12, "float", "ozone_density", 4)]
public float ozone_density;
[DNAFieldAttribute(13, "char", "sun_disc", 1)]
public char sun_disc;
[DNAFieldAttribute(14, "char", "_pad[7]", 1)]
public char[] _pad = new System.Char[7];
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;