Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

@@ -14,32 +14,32 @@ namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(166, "Histogram", 5160)]
public struct Histogram {
[DNAFieldAttribute(0, "int", "channels", "int", 4, false, 0)]
public class Histogram {
[DNAFieldAttribute(4, "int", 0, "channels", "int", false, 0)]
public int channels;
[DNAFieldAttribute(1, "int", "x_resolution", "int", 4, false, 4)]
[DNAFieldAttribute(4, "int", 1, "x_resolution", "int", false, 4)]
public int x_resolution;
[DNAFieldAttribute(2, "float", "data_luma[256]", "System.Single[]", 1024, false, 8)]
[DNAFieldAttribute(1024, "float", 2, "data_luma[256]", "System.Single[]", false, 8)]
public float[] data_luma = new System.Single[256];
[DNAFieldAttribute(3, "float", "data_r[256]", "System.Single[]", 1024, false, 1032)]
[DNAFieldAttribute(1024, "float", 3, "data_r[256]", "System.Single[]", false, 1032)]
public float[] data_r = new System.Single[256];
[DNAFieldAttribute(4, "float", "data_g[256]", "System.Single[]", 1024, false, 2056)]
[DNAFieldAttribute(1024, "float", 4, "data_g[256]", "System.Single[]", false, 2056)]
public float[] data_g = new System.Single[256];
[DNAFieldAttribute(5, "float", "data_b[256]", "System.Single[]", 1024, false, 3080)]
[DNAFieldAttribute(1024, "float", 5, "data_b[256]", "System.Single[]", false, 3080)]
public float[] data_b = new System.Single[256];
[DNAFieldAttribute(6, "float", "data_a[256]", "System.Single[]", 1024, false, 4104)]
[DNAFieldAttribute(1024, "float", 6, "data_a[256]", "System.Single[]", false, 4104)]
public float[] data_a = new System.Single[256];
[DNAFieldAttribute(7, "float", "xmax", "float", 4, false, 5128)]
[DNAFieldAttribute(4, "float", 7, "xmax", "float", false, 5128)]
public float xmax;
[DNAFieldAttribute(8, "float", "ymax", "float", 4, false, 5132)]
[DNAFieldAttribute(4, "float", 8, "ymax", "float", false, 5132)]
public float ymax;
[DNAFieldAttribute(9, "short", "mode", "short", 2, false, 5136)]
[DNAFieldAttribute(2, "short", 9, "mode", "short", false, 5136)]
public short mode;
[DNAFieldAttribute(10, "short", "flag", "short", 2, false, 5138)]
[DNAFieldAttribute(2, "short", 10, "flag", "short", false, 5138)]
public short flag;
[DNAFieldAttribute(11, "int", "height", "int", 4, false, 5140)]
[DNAFieldAttribute(4, "int", 11, "height", "int", false, 5140)]
public int height;
[DNAFieldAttribute(12, "float", "co[2][2]", "System.Single[,]", 16, false, 5144)]
[DNAFieldAttribute(16, "float", 12, "co[2][2]", "System.Single[,]", false, 5144)]
public float[,] co = new System.Single[2,2];
public Histogram() {
this.channels = default;