84 lines
3.9 KiB
C#
84 lines
3.9 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
using System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
using BlendFile;
|
|
|
|
[DNAClassAttribute(550, "GreasePencilShrinkwrapModifierData")]
|
|
public class GreasePencilShrinkwrapModifierData {
|
|
[DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120, false)]
|
|
public ModifierData modifier;
|
|
[DNAFieldAttribute(1, "GreasePencilModifierInfluenceData", "influence", "GreasePencilModifierInfluenceData", 168, false)]
|
|
public GreasePencilModifierInfluenceData influence;
|
|
[DNAFieldAttribute(2, "Object", "*target", "Object", 4, true)]
|
|
public Object ptr_target;
|
|
[DNAFieldAttribute(3, "Object", "*aux_target", "Object", 4, true)]
|
|
public Object ptr_aux_target;
|
|
[DNAFieldAttribute(4, "float", "keep_dist", "float", 4, false)]
|
|
public float keep_dist;
|
|
[DNAFieldAttribute(5, "short", "shrink_type", "short", 2, false)]
|
|
public short shrink_type;
|
|
[DNAFieldAttribute(6, "char", "shrink_opts", "char", 1, false)]
|
|
public char shrink_opts;
|
|
[DNAFieldAttribute(7, "char", "shrink_mode", "char", 1, false)]
|
|
public char shrink_mode;
|
|
[DNAFieldAttribute(8, "float", "proj_limit", "float", 4, false)]
|
|
public float proj_limit;
|
|
[DNAFieldAttribute(9, "char", "proj_axis", "char", 1, false)]
|
|
public char proj_axis;
|
|
[DNAFieldAttribute(10, "char", "subsurf_levels", "char", 1, false)]
|
|
public char subsurf_levels;
|
|
[DNAFieldAttribute(11, "char", "_pad[2]", "System.Char[]", 2, false)]
|
|
public char[] _pad = new System.Char[2];
|
|
[DNAFieldAttribute(12, "float", "smooth_factor", "float", 4, false)]
|
|
public float smooth_factor;
|
|
[DNAFieldAttribute(13, "int", "smooth_step", "int", 4, false)]
|
|
public int smooth_step;
|
|
[DNAFieldAttribute(14, "ShrinkwrapTreeData", "*cache_data", "ShrinkwrapTreeData", 4, true)]
|
|
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;
|
|
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;
|
|
}
|
|
}
|
|
}
|