//------------------------------------------------------------------------------ // // 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; [DNAClassAttribute(801, "BakeData", 1400)] public class BakeData { [DNAFieldAttribute(336, "ImageFormatData", 0, "im_format", "ImageFormatData", false, 0)] public ImageFormatData im_format; [DNAArrayAttribute(1024, "char", 1, "filepath[1024]", "System.Char[]", 1024, 336)] public char[] filepath = new System.Char[1024]; [DNAFieldAttribute(2, "short", 2, "width", "short", false, 1360)] public short width; [DNAFieldAttribute(2, "short", 3, "height", "short", false, 1362)] public short height; [DNAFieldAttribute(2, "short", 4, "margin", "short", false, 1364)] public short margin; [DNAFieldAttribute(2, "short", 5, "flag", "short", false, 1366)] public short flag; [DNAFieldAttribute(4, "float", 6, "cage_extrusion", "float", false, 1368)] public float cage_extrusion; [DNAFieldAttribute(4, "float", 7, "max_ray_distance", "float", false, 1372)] public float max_ray_distance; [DNAFieldAttribute(4, "int", 8, "pass_filter", "int", false, 1376)] public int pass_filter; [DNAArrayAttribute(3, "char", 9, "normal_swizzle[3]", "System.Char[]", 3, 1380)] public char[] normal_swizzle = new System.Char[3]; [DNAFieldAttribute(1, "char", 10, "normal_space", "char", false, 1383)] public char normal_space; [DNAFieldAttribute(1, "char", 11, "target", "char", false, 1384)] public char target; [DNAFieldAttribute(1, "char", 12, "save_mode", "char", false, 1385)] public char save_mode; [DNAFieldAttribute(1, "char", 13, "margin_type", "char", false, 1386)] public char margin_type; [DNAFieldAttribute(1, "char", 14, "view_from", "char", false, 1387)] public char view_from; [DNAArrayAttribute(4, "char", 15, "_pad[4]", "System.Char[]", 4, 1388)] public char[] _pad = new System.Char[4]; [DNAFieldAttribute(8, "Object", 16, "*cage_object", "Object", true, 1392)] public Object cage_object; public BakeData() { this.im_format = default; this.filepath = default; this.width = default; this.height = default; this.margin = default; this.flag = default; this.cage_extrusion = default; this.max_ray_distance = default; this.pass_filter = default; this.normal_swizzle = default; this.normal_space = default; this.target = default; this.save_mode = default; this.margin_type = default; this.view_from = default; this._pad = default; this.cage_object = default; } public BakeData( ImageFormatData im_format, char[] filepath, short width, short height, short margin, short flag, float cage_extrusion, float max_ray_distance, int pass_filter, char[] normal_swizzle, char normal_space, char target, char save_mode, char margin_type, char view_from, char[] _pad, Object cage_object) { this.im_format = im_format; this.filepath = filepath; this.width = width; this.height = height; this.margin = margin; this.flag = flag; this.cage_extrusion = cage_extrusion; this.max_ray_distance = max_ray_distance; this.pass_filter = pass_filter; this.normal_swizzle = normal_swizzle; this.normal_space = normal_space; this.target = target; this.save_mode = save_mode; this.margin_type = margin_type; this.view_from = view_from; this._pad = _pad; this.cage_object = cage_object; } } }