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,42 +15,42 @@ namespace BlendFile.DNA {
[DNAClassAttribute(298, "TintGpencilModifierData", 368)]
public class TintGpencilModifierData {
[DNAFieldAttribute(0, "GpencilModifierData", "modifier", "GpencilModifierData", 104, false, 0)]
[DNAFieldAttribute(104, "GpencilModifierData", 0, "modifier", "GpencilModifierData", false, 0)]
public GpencilModifierData modifier;
[DNAFieldAttribute(1, "Object", "*object", "Object", 8, true, 104)]
public Object ptr_object;
[DNAFieldAttribute(2, "Material", "*material", "Material", 8, true, 112)]
public Material ptr_material;
[DNAFieldAttribute(3, "char", "layername[64]", "System.Char[]", 64, false, 120)]
[DNAFieldAttribute(8, "Object", 1, "*object", "Object", true, 104)]
public Object @object;
[DNAFieldAttribute(8, "Material", 2, "*material", "Material", true, 112)]
public Material material;
[DNAFieldAttribute(64, "char", 3, "layername[64]", "System.Char[]", false, 120)]
public char[] layername = new System.Char[64];
[DNAFieldAttribute(4, "char", "materialname[64]", "System.Char[]", 64, false, 184)]
[DNAFieldAttribute(64, "char", 4, "materialname[64]", "System.Char[]", false, 184)]
public char[] materialname = new System.Char[64];
[DNAFieldAttribute(5, "char", "vgname[64]", "System.Char[]", 64, false, 248)]
[DNAFieldAttribute(64, "char", 5, "vgname[64]", "System.Char[]", false, 248)]
public char[] vgname = new System.Char[64];
[DNAFieldAttribute(6, "int", "pass_index", "int", 4, false, 312)]
[DNAFieldAttribute(4, "int", 6, "pass_index", "int", false, 312)]
public int pass_index;
[DNAFieldAttribute(7, "int", "layer_pass", "int", 4, false, 316)]
[DNAFieldAttribute(4, "int", 7, "layer_pass", "int", false, 316)]
public int layer_pass;
[DNAFieldAttribute(8, "int", "flag", "int", 4, false, 320)]
[DNAFieldAttribute(4, "int", 8, "flag", "int", false, 320)]
public int flag;
[DNAFieldAttribute(9, "int", "mode", "int", 4, false, 324)]
[DNAFieldAttribute(4, "int", 9, "mode", "int", false, 324)]
public int mode;
[DNAFieldAttribute(10, "float", "factor", "float", 4, false, 328)]
[DNAFieldAttribute(4, "float", 10, "factor", "float", false, 328)]
public float factor;
[DNAFieldAttribute(11, "float", "radius", "float", 4, false, 332)]
[DNAFieldAttribute(4, "float", 11, "radius", "float", false, 332)]
public float radius;
[DNAFieldAttribute(12, "float", "rgb[3]", "System.Single[]", 12, false, 336)]
[DNAFieldAttribute(12, "float", 12, "rgb[3]", "System.Single[]", false, 336)]
public float[] rgb = new System.Single[3];
[DNAFieldAttribute(13, "int", "type", "int", 4, false, 348)]
[DNAFieldAttribute(4, "int", 13, "type", "int", false, 348)]
public int type;
[DNAFieldAttribute(14, "CurveMapping", "*curve_intensity", "CurveMapping", 8, true, 352)]
public CurveMapping ptr_curve_intensity;
[DNAFieldAttribute(15, "ColorBand", "*colorband", "ColorBand", 8, true, 360)]
public ColorBand ptr_colorband;
[DNAFieldAttribute(8, "CurveMapping", 14, "*curve_intensity", "CurveMapping", true, 352)]
public CurveMapping curve_intensity;
[DNAFieldAttribute(8, "ColorBand", 15, "*colorband", "ColorBand", true, 360)]
public ColorBand colorband;
public TintGpencilModifierData() {
this.modifier = default;
this.ptr_object = default;
this.ptr_material = default;
this.@object = default;
this.material = default;
this.layername = default;
this.materialname = default;
this.vgname = default;
@@ -62,13 +62,13 @@ namespace BlendFile.DNA {
this.radius = default;
this.rgb = default;
this.type = default;
this.ptr_curve_intensity = default;
this.ptr_colorband = default;
this.curve_intensity = default;
this.colorband = default;
}
public TintGpencilModifierData(
GpencilModifierData modifier,
Object ptr_object,
Material ptr_material,
Object @object,
Material material,
char[] layername,
char[] materialname,
char[] vgname,
@@ -80,11 +80,11 @@ namespace BlendFile.DNA {
float radius,
float[] rgb,
int type,
CurveMapping ptr_curve_intensity,
ColorBand ptr_colorband) {
CurveMapping curve_intensity,
ColorBand colorband) {
this.modifier = modifier;
this.ptr_object = ptr_object;
this.ptr_material = ptr_material;
this.@object = @object;
this.material = material;
this.layername = layername;
this.materialname = materialname;
this.vgname = vgname;
@@ -96,8 +96,8 @@ namespace BlendFile.DNA {
this.radius = radius;
this.rgb = rgb;
this.type = type;
this.ptr_curve_intensity = ptr_curve_intensity;
this.ptr_colorband = ptr_colorband;
this.curve_intensity = curve_intensity;
this.colorband = colorband;
}
}
}