//------------------------------------------------------------------------------ // // 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 System; namespace BlendFile.DNA { using BlendFile; public struct MultiresModifierData { [DNAFieldAttribute(0, "ModifierData", "modifier", 120)] public ModifierData modifier; [DNAFieldAttribute(1, "char", "lvl", 1)] public char lvl; [DNAFieldAttribute(2, "char", "sculptlvl", 1)] public char sculptlvl; [DNAFieldAttribute(3, "char", "renderlvl", 1)] public char renderlvl; [DNAFieldAttribute(4, "char", "totlvl", 1)] public char totlvl; [DNAFieldAttribute(5, "char", "simple", 1)] public char simple; [DNAFieldAttribute(6, "char", "flags", 1)] public char flags; [DNAFieldAttribute(7, "char", "_pad[2]", 1)] public char[] _pad = new System.Char[2]; [DNAFieldAttribute(8, "short", "quality", 2)] public short quality; [DNAFieldAttribute(9, "short", "uv_smooth", 2)] public short uv_smooth; [DNAFieldAttribute(10, "short", "boundary_smooth", 2)] public short boundary_smooth; [DNAFieldAttribute(11, "char", "_pad2[2]", 1)] public char[] _pad2 = new System.Char[2]; public MultiresModifierData(ModifierData modifier, char lvl, char sculptlvl, char renderlvl, char totlvl, char simple, char flags, char[] _pad, short quality, short uv_smooth, short boundary_smooth, char[] _pad2) { this.modifier = modifier; this.lvl = lvl; this.sculptlvl = sculptlvl; this.renderlvl = renderlvl; this.totlvl = totlvl; this.simple = simple; this.flags = flags; this._pad = _pad; this.quality = quality; this.uv_smooth = uv_smooth; this.boundary_smooth = boundary_smooth; this._pad2 = _pad2; } } }