Files
BlenderSharp/BlendFile/DNA/GreasePencilShrinkwrapModifierData.cs
2025-03-12 19:02:40 +01:00

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", 336)]
public class GreasePencilShrinkwrapModifierData {
[DNAFieldAttribute(120, "ModifierData", 0, "modifier", "ModifierData", false, 0)]
public ModifierData modifier;
[DNAFieldAttribute(168, "GreasePencilModifierInfluenceData", 1, "influence", "GreasePencilModifierInfluenceData", false, 120)]
public GreasePencilModifierInfluenceData influence;
[DNAFieldAttribute(8, "Object", 2, "*target", "Object", true, 288)]
public Object target;
[DNAFieldAttribute(8, "Object", 3, "*aux_target", "Object", true, 296)]
public Object aux_target;
[DNAFieldAttribute(4, "float", 4, "keep_dist", "float", false, 304)]
public float keep_dist;
[DNAFieldAttribute(2, "short", 5, "shrink_type", "short", false, 308)]
public short shrink_type;
[DNAFieldAttribute(1, "char", 6, "shrink_opts", "char", false, 310)]
public char shrink_opts;
[DNAFieldAttribute(1, "char", 7, "shrink_mode", "char", false, 311)]
public char shrink_mode;
[DNAFieldAttribute(4, "float", 8, "proj_limit", "float", false, 312)]
public float proj_limit;
[DNAFieldAttribute(1, "char", 9, "proj_axis", "char", false, 316)]
public char proj_axis;
[DNAFieldAttribute(1, "char", 10, "subsurf_levels", "char", false, 317)]
public char subsurf_levels;
[DNAArrayAttribute(2, "char", 11, "_pad[2]", "System.Char[]", 2, false, 318)]
public char[] _pad = new System.Char[2];
[DNAFieldAttribute(4, "float", 12, "smooth_factor", "float", false, 320)]
public float smooth_factor;
[DNAFieldAttribute(4, "int", 13, "smooth_step", "int", false, 324)]
public int smooth_step;
[DNAFieldAttribute(8, "ShrinkwrapTreeData", 14, "*cache_data", "ShrinkwrapTreeData", true, 328)]
public ShrinkwrapTreeData cache_data;
public GreasePencilShrinkwrapModifierData() {
this.modifier = default;
this.influence = default;
this.target = default;
this.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.cache_data = default;
}
public GreasePencilShrinkwrapModifierData(ModifierData modifier, GreasePencilModifierInfluenceData influence, Object target, Object 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 cache_data) {
this.modifier = modifier;
this.influence = influence;
this.target = target;
this.aux_target = 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.cache_data = cache_data;
}
}
}