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

@@ -45,6 +45,23 @@ namespace BlendFile.DNA {
public int smooth_step;
[DNAFieldAttribute(14, "ShrinkwrapTreeData", "*cache_data", 0)]
public ShrinkwrapTreeData ptr_cache_data;
public GreasePencilShrinkwrapModifierData() {
this.modifier = default;
this.influence = default;
this.ptr_target = default;
this.ptr_aux_target = default;
this.keep_dist = default;
this.shrink_type = default;
this.shrink_opts = default;
this.shrink_mode = default;
this.proj_limit = default;
this.proj_axis = default;
this.subsurf_levels = default;
this._pad = default;
this.smooth_factor = default;
this.smooth_step = default;
this.ptr_cache_data = default;
}
public GreasePencilShrinkwrapModifierData(ModifierData modifier, GreasePencilModifierInfluenceData influence, Object ptr_target, Object ptr_aux_target, float keep_dist, short shrink_type, char shrink_opts, char shrink_mode, float proj_limit, char proj_axis, char subsurf_levels, char[] _pad, float smooth_factor, int smooth_step, ShrinkwrapTreeData ptr_cache_data) {
this.modifier = modifier;
this.influence = influence;