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 short space;
[DNAFieldAttribute(11, "float", "angle", 4)]
public float angle;
public WeightAngleGpencilModifierData() {
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.axis = default;
this.space = default;
this.angle = default;
}
public WeightAngleGpencilModifierData(GpencilModifierData modifier, char[] target_vgname, Material ptr_material, char[] layername, char[] vgname, int pass_index, int flag, float min_weight, int layer_pass, short axis, short space, float angle) {
this.modifier = modifier;
this.target_vgname = target_vgname;