Generated new code and added initial data handling

This commit is contained in:
mm00
2025-01-27 19:24:50 +01:00
parent ebcc629feb
commit 146a3992ce
940 changed files with 11560 additions and 9 deletions

View File

@@ -39,6 +39,20 @@ namespace BlendFile.DNA {
public float dist_end;
[DNAFieldAttribute(11, "Object", "*object", 1160)]
public Object ptr_object;
public WeightProxGpencilModifierData() {
this.modifier = default;
this.target_vgname = default;
this.ptr_material = default;
this.layername = default;
this.vgname = default;
this.pass_index = default;
this.flag = default;
this.min_weight = default;
this.layer_pass = default;
this.dist_start = default;
this.dist_end = default;
this.ptr_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) {
this.modifier = modifier;
this.target_vgname = target_vgname;