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(386, "LineStyleColorModifier_Material", 112)]
public class LineStyleColorModifier_Material {
[DNAFieldAttribute(0, "LineStyleModifier", "modifier", "LineStyleModifier", 96, false, 0)]
[DNAFieldAttribute(96, "LineStyleModifier", 0, "modifier", "LineStyleModifier", false, 0)]
public LineStyleModifier modifier;
[DNAFieldAttribute(1, "ColorBand", "*color_ramp", "ColorBand", 8, true, 96)]
public ColorBand ptr_color_ramp;
[DNAFieldAttribute(2, "int", "flags", "int", 4, false, 104)]
[DNAFieldAttribute(8, "ColorBand", 1, "*color_ramp", "ColorBand", true, 96)]
public ColorBand color_ramp;
[DNAFieldAttribute(4, "int", 2, "flags", "int", false, 104)]
public int flags;
[DNAFieldAttribute(3, "int", "mat_attr", "int", 4, false, 108)]
[DNAFieldAttribute(4, "int", 3, "mat_attr", "int", false, 108)]
public int mat_attr;
public LineStyleColorModifier_Material() {
this.modifier = default;
this.ptr_color_ramp = default;
this.color_ramp = default;
this.flags = default;
this.mat_attr = default;
}
public LineStyleColorModifier_Material(LineStyleModifier modifier, ColorBand ptr_color_ramp, int flags, int mat_attr) {
public LineStyleColorModifier_Material(LineStyleModifier modifier, ColorBand color_ramp, int flags, int mat_attr) {
this.modifier = modifier;
this.ptr_color_ramp = ptr_color_ramp;
this.color_ramp = color_ramp;
this.flags = flags;
this.mat_attr = mat_attr;
}