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,34 +15,34 @@ namespace BlendFile.DNA {
[DNAClassAttribute(532, "GreasePencilNoiseModifierData", 336)]
public class GreasePencilNoiseModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120, false, 0)]
[DNAFieldAttribute(120, "ModifierData", 0, "modifier", "ModifierData", false, 0)]
public ModifierData modifier;
[DNAFieldAttribute(1, "GreasePencilModifierInfluenceData", "influence", "GreasePencilModifierInfluenceData", 168, false, 120)]
[DNAFieldAttribute(168, "GreasePencilModifierInfluenceData", 1, "influence", "GreasePencilModifierInfluenceData", false, 120)]
public GreasePencilModifierInfluenceData influence;
[DNAFieldAttribute(2, "int", "flag", "int", 4, false, 288)]
[DNAFieldAttribute(4, "int", 2, "flag", "int", false, 288)]
public int flag;
[DNAFieldAttribute(3, "float", "factor", "float", 4, false, 292)]
[DNAFieldAttribute(4, "float", 3, "factor", "float", false, 292)]
public float factor;
[DNAFieldAttribute(4, "float", "factor_strength", "float", 4, false, 296)]
[DNAFieldAttribute(4, "float", 4, "factor_strength", "float", false, 296)]
public float factor_strength;
[DNAFieldAttribute(5, "float", "factor_thickness", "float", 4, false, 300)]
[DNAFieldAttribute(4, "float", 5, "factor_thickness", "float", false, 300)]
public float factor_thickness;
[DNAFieldAttribute(6, "float", "factor_uvs", "float", 4, false, 304)]
[DNAFieldAttribute(4, "float", 6, "factor_uvs", "float", false, 304)]
public float factor_uvs;
[DNAFieldAttribute(7, "float", "noise_scale", "float", 4, false, 308)]
[DNAFieldAttribute(4, "float", 7, "noise_scale", "float", false, 308)]
public float noise_scale;
[DNAFieldAttribute(8, "float", "noise_offset", "float", 4, false, 312)]
[DNAFieldAttribute(4, "float", 8, "noise_offset", "float", false, 312)]
public float noise_offset;
[DNAFieldAttribute(9, "short", "noise_mode", "short", 2, false, 316)]
[DNAFieldAttribute(2, "short", 9, "noise_mode", "short", false, 316)]
public short noise_mode;
[DNAFieldAttribute(10, "char", "_pad[2]", "System.Char[]", 2, false, 318)]
[DNAFieldAttribute(2, "char", 10, "_pad[2]", "System.Char[]", false, 318)]
public char[] _pad = new System.Char[2];
[DNAFieldAttribute(11, "int", "step", "int", 4, false, 320)]
[DNAFieldAttribute(4, "int", 11, "step", "int", false, 320)]
public int step;
[DNAFieldAttribute(12, "int", "seed", "int", 4, false, 324)]
[DNAFieldAttribute(4, "int", 12, "seed", "int", false, 324)]
public int seed;
[DNAFieldAttribute(13, "void", "*_pad1", "void", 8, true, 328)]
public object ptr__pad1;
[DNAFieldAttribute(8, "void", 13, "*_pad1", "void", true, 328)]
public object _pad1;
public GreasePencilNoiseModifierData() {
this.modifier = default;
this.influence = default;
@@ -57,9 +57,9 @@ namespace BlendFile.DNA {
this._pad = default;
this.step = default;
this.seed = default;
this.ptr__pad1 = default;
this._pad1 = default;
}
public GreasePencilNoiseModifierData(ModifierData modifier, GreasePencilModifierInfluenceData influence, int flag, float factor, float factor_strength, float factor_thickness, float factor_uvs, float noise_scale, float noise_offset, short noise_mode, char[] _pad, int step, int seed, object ptr__pad1) {
public GreasePencilNoiseModifierData(ModifierData modifier, GreasePencilModifierInfluenceData influence, int flag, float factor, float factor_strength, float factor_thickness, float factor_uvs, float noise_scale, float noise_offset, short noise_mode, char[] _pad, int step, int seed, object _pad1) {
this.modifier = modifier;
this.influence = influence;
this.flag = flag;
@@ -73,7 +73,7 @@ namespace BlendFile.DNA {
this._pad = _pad;
this.step = step;
this.seed = seed;
this.ptr__pad1 = ptr__pad1;
this._pad1 = _pad1;
}
}
}