Files
BlenderSharp/BlendFile/DNA/SolidifyModifierData.cs
2025-02-19 17:07:50 +01:00

124 lines
5.3 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(487, "SolidifyModifierData")]
public struct SolidifyModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120, false)]
public ModifierData modifier;
[DNAFieldAttribute(1, "char", "defgrp_name[64]", "System.Char[]", 64, false)]
public char[] defgrp_name = new System.Char[64];
[DNAFieldAttribute(2, "char", "shell_defgrp_name[64]", "System.Char[]", 64, false)]
public char[] shell_defgrp_name = new System.Char[64];
[DNAFieldAttribute(3, "char", "rim_defgrp_name[64]", "System.Char[]", 64, false)]
public char[] rim_defgrp_name = new System.Char[64];
[DNAFieldAttribute(4, "float", "offset", "float", 4, false)]
public float offset;
[DNAFieldAttribute(5, "float", "offset_fac", "float", 4, false)]
public float offset_fac;
[DNAFieldAttribute(6, "float", "offset_fac_vg", "float", 4, false)]
public float offset_fac_vg;
[DNAFieldAttribute(7, "float", "offset_clamp", "float", 4, false)]
public float offset_clamp;
[DNAFieldAttribute(8, "char", "mode", "char", 1, false)]
public char mode;
[DNAFieldAttribute(9, "char", "nonmanifold_offset_mode", "char", 1, false)]
public char nonmanifold_offset_mode;
[DNAFieldAttribute(10, "char", "nonmanifold_boundary_mode", "char", 1, false)]
public char nonmanifold_boundary_mode;
[DNAFieldAttribute(11, "char", "_pad", "char", 1, false)]
public char _pad;
[DNAFieldAttribute(12, "float", "crease_inner", "float", 4, false)]
public float crease_inner;
[DNAFieldAttribute(13, "float", "crease_outer", "float", 4, false)]
public float crease_outer;
[DNAFieldAttribute(14, "float", "crease_rim", "float", 4, false)]
public float crease_rim;
[DNAFieldAttribute(15, "int", "flag", "int", 4, false)]
public int flag;
[DNAFieldAttribute(16, "short", "mat_ofs", "short", 2, false)]
public short mat_ofs;
[DNAFieldAttribute(17, "short", "mat_ofs_rim", "short", 2, false)]
public short mat_ofs_rim;
[DNAFieldAttribute(18, "float", "merge_tolerance", "float", 4, false)]
public float merge_tolerance;
[DNAFieldAttribute(19, "float", "bevel_convex", "float", 4, false)]
public float bevel_convex;
public SolidifyModifierData() {
this.modifier = default;
this.defgrp_name = default;
this.shell_defgrp_name = default;
this.rim_defgrp_name = default;
this.offset = default;
this.offset_fac = default;
this.offset_fac_vg = default;
this.offset_clamp = default;
this.mode = default;
this.nonmanifold_offset_mode = default;
this.nonmanifold_boundary_mode = default;
this._pad = default;
this.crease_inner = default;
this.crease_outer = default;
this.crease_rim = default;
this.flag = default;
this.mat_ofs = default;
this.mat_ofs_rim = default;
this.merge_tolerance = default;
this.bevel_convex = default;
}
public SolidifyModifierData(
ModifierData modifier,
char[] defgrp_name,
char[] shell_defgrp_name,
char[] rim_defgrp_name,
float offset,
float offset_fac,
float offset_fac_vg,
float offset_clamp,
char mode,
char nonmanifold_offset_mode,
char nonmanifold_boundary_mode,
char _pad,
float crease_inner,
float crease_outer,
float crease_rim,
int flag,
short mat_ofs,
short mat_ofs_rim,
float merge_tolerance,
float bevel_convex) {
this.modifier = modifier;
this.defgrp_name = defgrp_name;
this.shell_defgrp_name = shell_defgrp_name;
this.rim_defgrp_name = rim_defgrp_name;
this.offset = offset;
this.offset_fac = offset_fac;
this.offset_fac_vg = offset_fac_vg;
this.offset_clamp = offset_clamp;
this.mode = mode;
this.nonmanifold_offset_mode = nonmanifold_offset_mode;
this.nonmanifold_boundary_mode = nonmanifold_boundary_mode;
this._pad = _pad;
this.crease_inner = crease_inner;
this.crease_outer = crease_outer;
this.crease_rim = crease_rim;
this.flag = flag;
this.mat_ofs = mat_ofs;
this.mat_ofs_rim = mat_ofs_rim;
this.merge_tolerance = merge_tolerance;
this.bevel_convex = bevel_convex;
}
}
}