//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using BlendFile.CompatTypes; using System; // Automatically generated by BlenderSharp at 01/22/2025 16:57:57 namespace BlendFile.DNA { public struct WireframeModifierData { public ModifierData modifier; public char[] defgrp_name = new System.Char[64]; public float offset; public float offset_fac; public float offset_fac_vg; public float crease_weight; public short flag; public short mat_ofs; public char[] _pad = new System.Char[4]; public WireframeModifierData(ModifierData modifier, char[] defgrp_name, float offset, float offset_fac, float offset_fac_vg, float crease_weight, short flag, short mat_ofs, char[] _pad) { this.modifier = modifier; this.defgrp_name = defgrp_name; this.offset = offset; this.offset_fac = offset_fac; this.offset_fac_vg = offset_fac_vg; this.crease_weight = crease_weight; this.flag = flag; this.mat_ofs = mat_ofs; this._pad = _pad; } } }