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,40 +15,40 @@ namespace BlendFile.DNA {
[DNAClassAttribute(539, "GreasePencilLengthModifierData", 352)]
public class GreasePencilLengthModifierData {
[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", "start_fac", "float", 4, false, 292)]
[DNAFieldAttribute(4, "float", 3, "start_fac", "float", false, 292)]
public float start_fac;
[DNAFieldAttribute(4, "float", "end_fac", "float", 4, false, 296)]
[DNAFieldAttribute(4, "float", 4, "end_fac", "float", false, 296)]
public float end_fac;
[DNAFieldAttribute(5, "float", "rand_start_fac", "float", 4, false, 300)]
[DNAFieldAttribute(4, "float", 5, "rand_start_fac", "float", false, 300)]
public float rand_start_fac;
[DNAFieldAttribute(6, "float", "rand_end_fac", "float", 4, false, 304)]
[DNAFieldAttribute(4, "float", 6, "rand_end_fac", "float", false, 304)]
public float rand_end_fac;
[DNAFieldAttribute(7, "float", "rand_offset", "float", 4, false, 308)]
[DNAFieldAttribute(4, "float", 7, "rand_offset", "float", false, 308)]
public float rand_offset;
[DNAFieldAttribute(8, "float", "overshoot_fac", "float", 4, false, 312)]
[DNAFieldAttribute(4, "float", 8, "overshoot_fac", "float", false, 312)]
public float overshoot_fac;
[DNAFieldAttribute(9, "int", "seed", "int", 4, false, 316)]
[DNAFieldAttribute(4, "int", 9, "seed", "int", false, 316)]
public int seed;
[DNAFieldAttribute(10, "int", "step", "int", 4, false, 320)]
[DNAFieldAttribute(4, "int", 10, "step", "int", false, 320)]
public int step;
[DNAFieldAttribute(11, "int", "mode", "int", 4, false, 324)]
[DNAFieldAttribute(4, "int", 11, "mode", "int", false, 324)]
public int mode;
[DNAFieldAttribute(12, "char", "_pad[4]", "System.Char[]", 4, false, 328)]
[DNAFieldAttribute(4, "char", 12, "_pad[4]", "System.Char[]", false, 328)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(13, "float", "point_density", "float", 4, false, 332)]
[DNAFieldAttribute(4, "float", 13, "point_density", "float", false, 332)]
public float point_density;
[DNAFieldAttribute(14, "float", "segment_influence", "float", 4, false, 336)]
[DNAFieldAttribute(4, "float", 14, "segment_influence", "float", false, 336)]
public float segment_influence;
[DNAFieldAttribute(15, "float", "max_angle", "float", 4, false, 340)]
[DNAFieldAttribute(4, "float", 15, "max_angle", "float", false, 340)]
public float max_angle;
[DNAFieldAttribute(16, "void", "*_pad1", "void", 8, true, 344)]
public object ptr__pad1;
[DNAFieldAttribute(8, "void", 16, "*_pad1", "void", true, 344)]
public object _pad1;
public GreasePencilLengthModifierData() {
this.modifier = default;
this.influence = default;
@@ -66,7 +66,7 @@ namespace BlendFile.DNA {
this.point_density = default;
this.segment_influence = default;
this.max_angle = default;
this.ptr__pad1 = default;
this._pad1 = default;
}
public GreasePencilLengthModifierData(
ModifierData modifier,
@@ -85,7 +85,7 @@ namespace BlendFile.DNA {
float point_density,
float segment_influence,
float max_angle,
object ptr__pad1) {
object _pad1) {
this.modifier = modifier;
this.influence = influence;
this.flag = flag;
@@ -102,7 +102,7 @@ namespace BlendFile.DNA {
this.point_density = point_density;
this.segment_influence = segment_influence;
this.max_angle = max_angle;
this.ptr__pad1 = ptr__pad1;
this._pad1 = _pad1;
}
}
}