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

@@ -15,23 +15,23 @@ namespace BlendFile.DNA {
[DNAClassAttribute(137, "PaletteColor", 32)]
public class PaletteColor {
[DNAFieldAttribute(0, "PaletteColor", "*next", "PaletteColor", 8, true, 0)]
public PaletteColor ptr_next;
[DNAFieldAttribute(1, "PaletteColor", "*prev", "PaletteColor", 8, true, 8)]
public PaletteColor ptr_prev;
[DNAFieldAttribute(2, "float", "rgb[3]", "System.Single[]", 12, false, 16)]
[DNAFieldAttribute(8, "PaletteColor", 0, "*next", "PaletteColor", true, 0)]
public PaletteColor next;
[DNAFieldAttribute(8, "PaletteColor", 1, "*prev", "PaletteColor", true, 8)]
public PaletteColor prev;
[DNAFieldAttribute(12, "float", 2, "rgb[3]", "System.Single[]", false, 16)]
public float[] rgb = new System.Single[3];
[DNAFieldAttribute(3, "float", "value", "float", 4, false, 28)]
[DNAFieldAttribute(4, "float", 3, "value", "float", false, 28)]
public float value;
public PaletteColor() {
this.ptr_next = default;
this.ptr_prev = default;
this.next = default;
this.prev = default;
this.rgb = default;
this.value = default;
}
public PaletteColor(PaletteColor ptr_next, PaletteColor ptr_prev, float[] rgb, float value) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
public PaletteColor(PaletteColor next, PaletteColor prev, float[] rgb, float value) {
this.next = next;
this.prev = prev;
this.rgb = rgb;
this.value = value;
}