124 lines
5.2 KiB
C#
124 lines
5.2 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(304, "ShrinkwrapGpencilModifierData")]
|
|
public class ShrinkwrapGpencilModifierData {
|
|
[DNAFieldAttribute(0, "GpencilModifierData", "modifier", "GpencilModifierData", 104, false)]
|
|
public GpencilModifierData modifier;
|
|
[DNAFieldAttribute(1, "Object", "*target", "Object", 4, true)]
|
|
public Object ptr_target;
|
|
[DNAFieldAttribute(2, "Object", "*aux_target", "Object", 4, true)]
|
|
public Object ptr_aux_target;
|
|
[DNAFieldAttribute(3, "Material", "*material", "Material", 4, true)]
|
|
public Material ptr_material;
|
|
[DNAFieldAttribute(4, "char", "layername[64]", "System.Char[]", 64, false)]
|
|
public char[] layername = new System.Char[64];
|
|
[DNAFieldAttribute(5, "char", "vgname[64]", "System.Char[]", 64, false)]
|
|
public char[] vgname = new System.Char[64];
|
|
[DNAFieldAttribute(6, "int", "pass_index", "int", 4, false)]
|
|
public int pass_index;
|
|
[DNAFieldAttribute(7, "int", "flag", "int", 4, false)]
|
|
public int flag;
|
|
[DNAFieldAttribute(8, "int", "layer_pass", "int", 4, false)]
|
|
public int layer_pass;
|
|
[DNAFieldAttribute(9, "float", "keep_dist", "float", 4, false)]
|
|
public float keep_dist;
|
|
[DNAFieldAttribute(10, "short", "shrink_type", "short", 2, false)]
|
|
public short shrink_type;
|
|
[DNAFieldAttribute(11, "char", "shrink_opts", "char", 1, false)]
|
|
public char shrink_opts;
|
|
[DNAFieldAttribute(12, "char", "shrink_mode", "char", 1, false)]
|
|
public char shrink_mode;
|
|
[DNAFieldAttribute(13, "float", "proj_limit", "float", 4, false)]
|
|
public float proj_limit;
|
|
[DNAFieldAttribute(14, "char", "proj_axis", "char", 1, false)]
|
|
public char proj_axis;
|
|
[DNAFieldAttribute(15, "char", "subsurf_levels", "char", 1, false)]
|
|
public char subsurf_levels;
|
|
[DNAFieldAttribute(16, "char", "_pad[6]", "System.Char[]", 6, false)]
|
|
public char[] _pad = new System.Char[6];
|
|
[DNAFieldAttribute(17, "float", "smooth_factor", "float", 4, false)]
|
|
public float smooth_factor;
|
|
[DNAFieldAttribute(18, "int", "smooth_step", "int", 4, false)]
|
|
public int smooth_step;
|
|
[DNAFieldAttribute(19, "ShrinkwrapTreeData", "*cache_data", "ShrinkwrapTreeData", 4, true)]
|
|
public ShrinkwrapTreeData ptr_cache_data;
|
|
public ShrinkwrapGpencilModifierData() {
|
|
this.modifier = default;
|
|
this.ptr_target = default;
|
|
this.ptr_aux_target = default;
|
|
this.ptr_material = default;
|
|
this.layername = default;
|
|
this.vgname = default;
|
|
this.pass_index = default;
|
|
this.flag = default;
|
|
this.layer_pass = 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 ShrinkwrapGpencilModifierData(
|
|
GpencilModifierData modifier,
|
|
Object ptr_target,
|
|
Object ptr_aux_target,
|
|
Material ptr_material,
|
|
char[] layername,
|
|
char[] vgname,
|
|
int pass_index,
|
|
int flag,
|
|
int layer_pass,
|
|
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.ptr_target = ptr_target;
|
|
this.ptr_aux_target = ptr_aux_target;
|
|
this.ptr_material = ptr_material;
|
|
this.layername = layername;
|
|
this.vgname = vgname;
|
|
this.pass_index = pass_index;
|
|
this.flag = flag;
|
|
this.layer_pass = layer_pass;
|
|
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;
|
|
}
|
|
}
|
|
}
|