Added Generation Output

This commit is contained in:
Samuele Lorefice
2025-01-22 02:23:29 +01:00
parent 83b207b799
commit fa78292a67
936 changed files with 31758 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class GreasePencilShrinkwrapModifierData {
public ModifierData modifier;
public GreasePencilModifierInfluenceData influence;
public Object ptr_target;
public Object ptr_aux_target;
public float keep_dist;
public short shrink_type;
public char shrink_opts;
public char shrink_mode;
public float proj_limit;
public char proj_axis;
public char subsurf_levels;
public char[] _pad = new System.Char[2];
public float smooth_factor;
public int smooth_step;
public ShrinkwrapTreeData ptr_cache_data;
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;
this.ptr_target = ptr_target;
this.ptr_aux_target = ptr_aux_target;
this.keep_dist = keep_dist;
this.shrink_type = shrink_type;
this.shrink_opts = shrink_opts;
this.shrink_mode = shrink_mode;
this.proj_limit = proj_limit;
this.proj_axis = proj_axis;
this.subsurf_levels = subsurf_levels;
this._pad = _pad;
this.smooth_factor = smooth_factor;
this.smooth_step = smooth_step;
this.ptr_cache_data = ptr_cache_data;
}
}
}