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,47 +15,47 @@ namespace BlendFile.DNA {
[DNAClassAttribute(276, "NoiseGpencilModifierData", 360)]
public class NoiseGpencilModifierData {
[DNAFieldAttribute(0, "GpencilModifierData", "modifier", "GpencilModifierData", 104, false, 0)]
[DNAFieldAttribute(104, "GpencilModifierData", 0, "modifier", "GpencilModifierData", false, 0)]
public GpencilModifierData modifier;
[DNAFieldAttribute(1, "Material", "*material", "Material", 8, true, 104)]
public Material ptr_material;
[DNAFieldAttribute(2, "char", "layername[64]", "System.Char[]", 64, false, 112)]
[DNAFieldAttribute(8, "Material", 1, "*material", "Material", true, 104)]
public Material material;
[DNAFieldAttribute(64, "char", 2, "layername[64]", "System.Char[]", false, 112)]
public char[] layername = new System.Char[64];
[DNAFieldAttribute(3, "char", "materialname[64]", "System.Char[]", 64, false, 176)]
[DNAFieldAttribute(64, "char", 3, "materialname[64]", "System.Char[]", false, 176)]
public char[] materialname = new System.Char[64];
[DNAFieldAttribute(4, "char", "vgname[64]", "System.Char[]", 64, false, 240)]
[DNAFieldAttribute(64, "char", 4, "vgname[64]", "System.Char[]", false, 240)]
public char[] vgname = new System.Char[64];
[DNAFieldAttribute(5, "int", "pass_index", "int", 4, false, 304)]
[DNAFieldAttribute(4, "int", 5, "pass_index", "int", false, 304)]
public int pass_index;
[DNAFieldAttribute(6, "int", "flag", "int", 4, false, 308)]
[DNAFieldAttribute(4, "int", 6, "flag", "int", false, 308)]
public int flag;
[DNAFieldAttribute(7, "float", "factor", "float", 4, false, 312)]
[DNAFieldAttribute(4, "float", 7, "factor", "float", false, 312)]
public float factor;
[DNAFieldAttribute(8, "float", "factor_strength", "float", 4, false, 316)]
[DNAFieldAttribute(4, "float", 8, "factor_strength", "float", false, 316)]
public float factor_strength;
[DNAFieldAttribute(9, "float", "factor_thickness", "float", 4, false, 320)]
[DNAFieldAttribute(4, "float", 9, "factor_thickness", "float", false, 320)]
public float factor_thickness;
[DNAFieldAttribute(10, "float", "factor_uvs", "float", 4, false, 324)]
[DNAFieldAttribute(4, "float", 10, "factor_uvs", "float", false, 324)]
public float factor_uvs;
[DNAFieldAttribute(11, "float", "noise_scale", "float", 4, false, 328)]
[DNAFieldAttribute(4, "float", 11, "noise_scale", "float", false, 328)]
public float noise_scale;
[DNAFieldAttribute(12, "float", "noise_offset", "float", 4, false, 332)]
[DNAFieldAttribute(4, "float", 12, "noise_offset", "float", false, 332)]
public float noise_offset;
[DNAFieldAttribute(13, "short", "noise_mode", "short", 2, false, 336)]
[DNAFieldAttribute(2, "short", 13, "noise_mode", "short", false, 336)]
public short noise_mode;
[DNAFieldAttribute(14, "char", "_pad[2]", "System.Char[]", 2, false, 338)]
[DNAFieldAttribute(2, "char", 14, "_pad[2]", "System.Char[]", false, 338)]
public char[] _pad = new System.Char[2];
[DNAFieldAttribute(15, "int", "step", "int", 4, false, 340)]
[DNAFieldAttribute(4, "int", 15, "step", "int", false, 340)]
public int step;
[DNAFieldAttribute(16, "int", "layer_pass", "int", 4, false, 344)]
[DNAFieldAttribute(4, "int", 16, "layer_pass", "int", false, 344)]
public int layer_pass;
[DNAFieldAttribute(17, "int", "seed", "int", 4, false, 348)]
[DNAFieldAttribute(4, "int", 17, "seed", "int", false, 348)]
public int seed;
[DNAFieldAttribute(18, "CurveMapping", "*curve_intensity", "CurveMapping", 8, true, 352)]
public CurveMapping ptr_curve_intensity;
[DNAFieldAttribute(8, "CurveMapping", 18, "*curve_intensity", "CurveMapping", true, 352)]
public CurveMapping curve_intensity;
public NoiseGpencilModifierData() {
this.modifier = default;
this.ptr_material = default;
this.material = default;
this.layername = default;
this.materialname = default;
this.vgname = default;
@@ -72,11 +72,11 @@ namespace BlendFile.DNA {
this.step = default;
this.layer_pass = default;
this.seed = default;
this.ptr_curve_intensity = default;
this.curve_intensity = default;
}
public NoiseGpencilModifierData(
GpencilModifierData modifier,
Material ptr_material,
Material material,
char[] layername,
char[] materialname,
char[] vgname,
@@ -93,9 +93,9 @@ namespace BlendFile.DNA {
int step,
int layer_pass,
int seed,
CurveMapping ptr_curve_intensity) {
CurveMapping curve_intensity) {
this.modifier = modifier;
this.ptr_material = ptr_material;
this.material = material;
this.layername = layername;
this.materialname = materialname;
this.vgname = vgname;
@@ -112,7 +112,7 @@ namespace BlendFile.DNA {
this.step = step;
this.layer_pass = layer_pass;
this.seed = seed;
this.ptr_curve_intensity = ptr_curve_intensity;
this.curve_intensity = curve_intensity;
}
}
}