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(300, "WeightProxGpencilModifierData", 336)]
public class WeightProxGpencilModifierData {
[DNAFieldAttribute(0, "GpencilModifierData", "modifier", "GpencilModifierData", 104, false, 0)]
[DNAFieldAttribute(104, "GpencilModifierData", 0, "modifier", "GpencilModifierData", false, 0)]
public GpencilModifierData modifier;
[DNAFieldAttribute(1, "char", "target_vgname[64]", "System.Char[]", 64, false, 104)]
[DNAFieldAttribute(64, "char", 1, "target_vgname[64]", "System.Char[]", false, 104)]
public char[] target_vgname = new System.Char[64];
[DNAFieldAttribute(2, "Material", "*material", "Material", 8, true, 168)]
public Material ptr_material;
[DNAFieldAttribute(3, "char", "layername[64]", "System.Char[]", 64, false, 176)]
[DNAFieldAttribute(8, "Material", 2, "*material", "Material", true, 168)]
public Material material;
[DNAFieldAttribute(64, "char", 3, "layername[64]", "System.Char[]", false, 176)]
public char[] layername = 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", "min_weight", "float", 4, false, 312)]
[DNAFieldAttribute(4, "float", 7, "min_weight", "float", false, 312)]
public float min_weight;
[DNAFieldAttribute(8, "int", "layer_pass", "int", 4, false, 316)]
[DNAFieldAttribute(4, "int", 8, "layer_pass", "int", false, 316)]
public int layer_pass;
[DNAFieldAttribute(9, "float", "dist_start", "float", 4, false, 320)]
[DNAFieldAttribute(4, "float", 9, "dist_start", "float", false, 320)]
public float dist_start;
[DNAFieldAttribute(10, "float", "dist_end", "float", 4, false, 324)]
[DNAFieldAttribute(4, "float", 10, "dist_end", "float", false, 324)]
public float dist_end;
[DNAFieldAttribute(11, "Object", "*object", "Object", 8, true, 328)]
public Object ptr_object;
[DNAFieldAttribute(8, "Object", 11, "*object", "Object", true, 328)]
public Object @object;
public WeightProxGpencilModifierData() {
this.modifier = default;
this.target_vgname = default;
this.ptr_material = default;
this.material = default;
this.layername = default;
this.vgname = default;
this.pass_index = default;
@@ -51,12 +51,12 @@ namespace BlendFile.DNA {
this.layer_pass = default;
this.dist_start = default;
this.dist_end = default;
this.ptr_object = default;
this.@object = default;
}
public WeightProxGpencilModifierData(GpencilModifierData modifier, char[] target_vgname, Material ptr_material, char[] layername, char[] vgname, int pass_index, int flag, float min_weight, int layer_pass, float dist_start, float dist_end, Object ptr_object) {
public WeightProxGpencilModifierData(GpencilModifierData modifier, char[] target_vgname, Material material, char[] layername, char[] vgname, int pass_index, int flag, float min_weight, int layer_pass, float dist_start, float dist_end, Object @object) {
this.modifier = modifier;
this.target_vgname = target_vgname;
this.ptr_material = ptr_material;
this.material = material;
this.layername = layername;
this.vgname = vgname;
this.pass_index = pass_index;
@@ -65,7 +65,7 @@ namespace BlendFile.DNA {
this.layer_pass = layer_pass;
this.dist_start = dist_start;
this.dist_end = dist_end;
this.ptr_object = ptr_object;
this.@object = @object;
}
}
}