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,45 +15,45 @@ namespace BlendFile.DNA {
[DNAClassAttribute(525, "GreasePencilModifierInfluenceData", 168)]
public class GreasePencilModifierInfluenceData {
[DNAFieldAttribute(0, "int", "flag", "int", 4, false, 0)]
[DNAFieldAttribute(4, "int", 0, "flag", "int", false, 0)]
public int flag;
[DNAFieldAttribute(1, "char", "_pad1[4]", "System.Char[]", 4, false, 4)]
[DNAFieldAttribute(4, "char", 1, "_pad1[4]", "System.Char[]", false, 4)]
public char[] _pad1 = new System.Char[4];
[DNAFieldAttribute(2, "char", "layer_name[64]", "System.Char[]", 64, false, 8)]
[DNAFieldAttribute(64, "char", 2, "layer_name[64]", "System.Char[]", false, 8)]
public char[] layer_name = new System.Char[64];
[DNAFieldAttribute(3, "Material", "*material", "Material", 8, true, 72)]
public Material ptr_material;
[DNAFieldAttribute(4, "int", "layer_pass", "int", 4, false, 80)]
[DNAFieldAttribute(8, "Material", 3, "*material", "Material", true, 72)]
public Material material;
[DNAFieldAttribute(4, "int", 4, "layer_pass", "int", false, 80)]
public int layer_pass;
[DNAFieldAttribute(5, "int", "material_pass", "int", 4, false, 84)]
[DNAFieldAttribute(4, "int", 5, "material_pass", "int", false, 84)]
public int material_pass;
[DNAFieldAttribute(6, "char", "vertex_group_name[64]", "System.Char[]", 64, false, 88)]
[DNAFieldAttribute(64, "char", 6, "vertex_group_name[64]", "System.Char[]", false, 88)]
public char[] vertex_group_name = new System.Char[64];
[DNAFieldAttribute(7, "CurveMapping", "*custom_curve", "CurveMapping", 8, true, 152)]
public CurveMapping ptr_custom_curve;
[DNAFieldAttribute(8, "void", "*_pad2", "void", 8, true, 160)]
public object ptr__pad2;
[DNAFieldAttribute(8, "CurveMapping", 7, "*custom_curve", "CurveMapping", true, 152)]
public CurveMapping custom_curve;
[DNAFieldAttribute(8, "void", 8, "*_pad2", "void", true, 160)]
public object _pad2;
public GreasePencilModifierInfluenceData() {
this.flag = default;
this._pad1 = default;
this.layer_name = default;
this.ptr_material = default;
this.material = default;
this.layer_pass = default;
this.material_pass = default;
this.vertex_group_name = default;
this.ptr_custom_curve = default;
this.ptr__pad2 = default;
this.custom_curve = default;
this._pad2 = default;
}
public GreasePencilModifierInfluenceData(int flag, char[] _pad1, char[] layer_name, Material ptr_material, int layer_pass, int material_pass, char[] vertex_group_name, CurveMapping ptr_custom_curve, object ptr__pad2) {
public GreasePencilModifierInfluenceData(int flag, char[] _pad1, char[] layer_name, Material material, int layer_pass, int material_pass, char[] vertex_group_name, CurveMapping custom_curve, object _pad2) {
this.flag = flag;
this._pad1 = _pad1;
this.layer_name = layer_name;
this.ptr_material = ptr_material;
this.material = material;
this.layer_pass = layer_pass;
this.material_pass = material_pass;
this.vertex_group_name = vertex_group_name;
this.ptr_custom_curve = ptr_custom_curve;
this.ptr__pad2 = ptr__pad2;
this.custom_curve = custom_curve;
this._pad2 = _pad2;
}
}
}