Files
BlenderSharp/BlendFile/DNA/BakeData.cs

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