Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

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