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

@@ -33,6 +33,17 @@ namespace BlendFile.DNA {
public float sharp_threshold;
[DNAFieldAttribute(8, "float", "distance", 4)]
public float distance;
public GreasePencilSimplifyModifierData() {
this.modifier = default;
this.influence = default;
this.mode = default;
this._pad = default;
this.step = default;
this.factor = default;
this.length = default;
this.sharp_threshold = default;
this.distance = default;
}
public GreasePencilSimplifyModifierData(ModifierData modifier, GreasePencilModifierInfluenceData influence, short mode, char[] _pad, short step, float factor, float length, float sharp_threshold, float distance) {
this.modifier = modifier;
this.influence = influence;