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,48 +15,48 @@ namespace BlendFile.DNA {
[DNAClassAttribute(441, "MetaElem", 104)]
public class MetaElem {
[DNAFieldAttribute(0, "MetaElem", "*next", "MetaElem", 8, true, 0)]
public MetaElem ptr_next;
[DNAFieldAttribute(1, "MetaElem", "*prev", "MetaElem", 8, true, 8)]
public MetaElem ptr_prev;
[DNAFieldAttribute(2, "BoundBox", "*bb", "BoundBox", 8, true, 16)]
public BoundBox ptr_bb;
[DNAFieldAttribute(3, "short", "type", "short", 2, false, 24)]
[DNAFieldAttribute(8, "MetaElem", 0, "*next", "MetaElem", true, 0)]
public MetaElem next;
[DNAFieldAttribute(8, "MetaElem", 1, "*prev", "MetaElem", true, 8)]
public MetaElem prev;
[DNAFieldAttribute(8, "BoundBox", 2, "*bb", "BoundBox", true, 16)]
public BoundBox bb;
[DNAFieldAttribute(2, "short", 3, "type", "short", false, 24)]
public short type;
[DNAFieldAttribute(4, "short", "flag", "short", 2, false, 26)]
[DNAFieldAttribute(2, "short", 4, "flag", "short", false, 26)]
public short flag;
[DNAFieldAttribute(5, "char", "_pad[4]", "System.Char[]", 4, false, 28)]
[DNAFieldAttribute(4, "char", 5, "_pad[4]", "System.Char[]", false, 28)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(6, "float", "x", "float", 4, false, 32)]
[DNAFieldAttribute(4, "float", 6, "x", "float", false, 32)]
public float x;
[DNAFieldAttribute(7, "float", "y", "float", 4, false, 36)]
[DNAFieldAttribute(4, "float", 7, "y", "float", false, 36)]
public float y;
[DNAFieldAttribute(8, "float", "z", "float", 4, false, 40)]
[DNAFieldAttribute(4, "float", 8, "z", "float", false, 40)]
public float z;
[DNAFieldAttribute(9, "float", "quat[4]", "System.Single[]", 16, false, 44)]
[DNAFieldAttribute(16, "float", 9, "quat[4]", "System.Single[]", false, 44)]
public float[] quat = new System.Single[4];
[DNAFieldAttribute(10, "float", "expx", "float", 4, false, 60)]
[DNAFieldAttribute(4, "float", 10, "expx", "float", false, 60)]
public float expx;
[DNAFieldAttribute(11, "float", "expy", "float", 4, false, 64)]
[DNAFieldAttribute(4, "float", 11, "expy", "float", false, 64)]
public float expy;
[DNAFieldAttribute(12, "float", "expz", "float", 4, false, 68)]
[DNAFieldAttribute(4, "float", 12, "expz", "float", false, 68)]
public float expz;
[DNAFieldAttribute(13, "float", "rad", "float", 4, false, 72)]
[DNAFieldAttribute(4, "float", 13, "rad", "float", false, 72)]
public float rad;
[DNAFieldAttribute(14, "float", "rad2", "float", 4, false, 76)]
[DNAFieldAttribute(4, "float", 14, "rad2", "float", false, 76)]
public float rad2;
[DNAFieldAttribute(15, "float", "s", "float", 4, false, 80)]
[DNAFieldAttribute(4, "float", 15, "s", "float", false, 80)]
public float s;
[DNAFieldAttribute(16, "float", "len", "float", 4, false, 84)]
[DNAFieldAttribute(4, "float", 16, "len", "float", false, 84)]
public float len;
[DNAFieldAttribute(17, "float", "*mat", "float", 8, true, 88)]
public float ptr_mat;
[DNAFieldAttribute(18, "float", "*imat", "float", 8, true, 96)]
public float ptr_imat;
[DNAFieldAttribute(8, "float", 17, "*mat", "float", true, 88)]
public float mat;
[DNAFieldAttribute(8, "float", 18, "*imat", "float", true, 96)]
public float imat;
public MetaElem() {
this.ptr_next = default;
this.ptr_prev = default;
this.ptr_bb = default;
this.next = default;
this.prev = default;
this.bb = default;
this.type = default;
this.flag = default;
this._pad = default;
@@ -71,13 +71,13 @@ namespace BlendFile.DNA {
this.rad2 = default;
this.s = default;
this.len = default;
this.ptr_mat = default;
this.ptr_imat = default;
this.mat = default;
this.imat = default;
}
public MetaElem(
MetaElem ptr_next,
MetaElem ptr_prev,
BoundBox ptr_bb,
MetaElem next,
MetaElem prev,
BoundBox bb,
short type,
short flag,
char[] _pad,
@@ -92,11 +92,11 @@ namespace BlendFile.DNA {
float rad2,
float s,
float len,
float ptr_mat,
float ptr_imat) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.ptr_bb = ptr_bb;
float mat,
float imat) {
this.next = next;
this.prev = prev;
this.bb = bb;
this.type = type;
this.flag = flag;
this._pad = _pad;
@@ -111,8 +111,8 @@ namespace BlendFile.DNA {
this.rad2 = rad2;
this.s = s;
this.len = len;
this.ptr_mat = ptr_mat;
this.ptr_imat = ptr_imat;
this.mat = mat;
this.imat = imat;
}
}
}