119 lines
4.7 KiB
C#
119 lines
4.7 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(443, "MetaBall", 312)]
|
|
public class MetaBall {
|
|
[DNAFieldAttribute(0, "ID", "id", "ID", 208, false, 0)]
|
|
public ID id;
|
|
[DNAFieldAttribute(1, "AnimData", "*adt", "AnimData", 8, true, 208)]
|
|
public AnimData ptr_adt;
|
|
[DNAFieldAttribute(2, "ListBase", "elems", "ListBase", 16, false, 216)]
|
|
public ListBase elems;
|
|
[DNAFieldAttribute(3, "ListBase", "*editelems", "ListBase", 8, true, 232)]
|
|
public ListBase ptr_editelems;
|
|
[DNAFieldAttribute(4, "Ipo", "*ipo", "Ipo", 8, true, 240)]
|
|
public Ipo ptr_ipo;
|
|
[DNAFieldAttribute(5, "Material", "**mat", "Material", 8, true, 248)]
|
|
public Material ptr_ptr_mat;
|
|
[DNAFieldAttribute(6, "char", "flag", "char", 1, false, 256)]
|
|
public char flag;
|
|
[DNAFieldAttribute(7, "char", "flag2", "char", 1, false, 257)]
|
|
public char flag2;
|
|
[DNAFieldAttribute(8, "short", "totcol", "short", 2, false, 258)]
|
|
public short totcol;
|
|
[DNAFieldAttribute(9, "char", "texflag", "char", 1, false, 260)]
|
|
public char texflag;
|
|
[DNAFieldAttribute(10, "char", "_pad[2]", "System.Char[]", 2, false, 261)]
|
|
public char[] _pad = new System.Char[2];
|
|
[DNAFieldAttribute(11, "char", "needs_flush_to_id", "char", 1, false, 263)]
|
|
public char needs_flush_to_id;
|
|
[DNAFieldAttribute(12, "float", "loc[3]", "System.Single[]", 12, false, 264)]
|
|
public float[] loc = new System.Single[3];
|
|
[DNAFieldAttribute(13, "float", "size[3]", "System.Single[]", 12, false, 276)]
|
|
public float[] size = new System.Single[3];
|
|
[DNAFieldAttribute(14, "float", "wiresize", "float", 4, false, 288)]
|
|
public float wiresize;
|
|
[DNAFieldAttribute(15, "float", "rendersize", "float", 4, false, 292)]
|
|
public float rendersize;
|
|
[DNAFieldAttribute(16, "float", "thresh", "float", 4, false, 296)]
|
|
public float thresh;
|
|
[DNAFieldAttribute(17, "char", "_pad0[4]", "System.Char[]", 4, false, 300)]
|
|
public char[] _pad0 = new System.Char[4];
|
|
[DNAFieldAttribute(18, "MetaElem", "*lastelem", "MetaElem", 8, true, 304)]
|
|
public MetaElem ptr_lastelem;
|
|
public MetaBall() {
|
|
this.id = default;
|
|
this.ptr_adt = default;
|
|
this.elems = default;
|
|
this.ptr_editelems = default;
|
|
this.ptr_ipo = default;
|
|
this.ptr_ptr_mat = default;
|
|
this.flag = default;
|
|
this.flag2 = default;
|
|
this.totcol = default;
|
|
this.texflag = default;
|
|
this._pad = default;
|
|
this.needs_flush_to_id = default;
|
|
this.loc = default;
|
|
this.size = default;
|
|
this.wiresize = default;
|
|
this.rendersize = default;
|
|
this.thresh = default;
|
|
this._pad0 = default;
|
|
this.ptr_lastelem = default;
|
|
}
|
|
public MetaBall(
|
|
ID id,
|
|
AnimData ptr_adt,
|
|
ListBase elems,
|
|
ListBase ptr_editelems,
|
|
Ipo ptr_ipo,
|
|
Material ptr_ptr_mat,
|
|
char flag,
|
|
char flag2,
|
|
short totcol,
|
|
char texflag,
|
|
char[] _pad,
|
|
char needs_flush_to_id,
|
|
float[] loc,
|
|
float[] size,
|
|
float wiresize,
|
|
float rendersize,
|
|
float thresh,
|
|
char[] _pad0,
|
|
MetaElem ptr_lastelem) {
|
|
this.id = id;
|
|
this.ptr_adt = ptr_adt;
|
|
this.elems = elems;
|
|
this.ptr_editelems = ptr_editelems;
|
|
this.ptr_ipo = ptr_ipo;
|
|
this.ptr_ptr_mat = ptr_ptr_mat;
|
|
this.flag = flag;
|
|
this.flag2 = flag2;
|
|
this.totcol = totcol;
|
|
this.texflag = texflag;
|
|
this._pad = _pad;
|
|
this.needs_flush_to_id = needs_flush_to_id;
|
|
this.loc = loc;
|
|
this.size = size;
|
|
this.wiresize = wiresize;
|
|
this.rendersize = rendersize;
|
|
this.thresh = thresh;
|
|
this._pad0 = _pad0;
|
|
this.ptr_lastelem = ptr_lastelem;
|
|
}
|
|
}
|
|
}
|