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,60 +15,60 @@ namespace BlendFile.DNA {
[DNAClassAttribute(773, "ObHook", 256)]
public class ObHook {
[DNAFieldAttribute(0, "ObHook", "*next", "ObHook", 8, true, 0)]
public ObHook ptr_next;
[DNAFieldAttribute(1, "ObHook", "*prev", "ObHook", 8, true, 8)]
public ObHook ptr_prev;
[DNAFieldAttribute(2, "Object", "*parent", "Object", 8, true, 16)]
public Object ptr_parent;
[DNAFieldAttribute(3, "float", "parentinv[4][4]", "System.Single[,]", 64, false, 24)]
[DNAFieldAttribute(8, "ObHook", 0, "*next", "ObHook", true, 0)]
public ObHook next;
[DNAFieldAttribute(8, "ObHook", 1, "*prev", "ObHook", true, 8)]
public ObHook prev;
[DNAFieldAttribute(8, "Object", 2, "*parent", "Object", true, 16)]
public Object parent;
[DNAFieldAttribute(64, "float", 3, "parentinv[4][4]", "System.Single[,]", false, 24)]
public float[,] parentinv = new System.Single[4,4];
[DNAFieldAttribute(4, "float", "mat[4][4]", "System.Single[,]", 64, false, 88)]
[DNAFieldAttribute(64, "float", 4, "mat[4][4]", "System.Single[,]", false, 88)]
public float[,] mat = new System.Single[4,4];
[DNAFieldAttribute(5, "float", "cent[3]", "System.Single[]", 12, false, 152)]
[DNAFieldAttribute(12, "float", 5, "cent[3]", "System.Single[]", false, 152)]
public float[] cent = new System.Single[3];
[DNAFieldAttribute(6, "float", "falloff", "float", 4, false, 164)]
[DNAFieldAttribute(4, "float", 6, "falloff", "float", false, 164)]
public float falloff;
[DNAFieldAttribute(7, "char", "name[64]", "System.Char[]", 64, false, 168)]
[DNAFieldAttribute(64, "char", 7, "name[64]", "System.Char[]", false, 168)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(8, "int", "*indexar", "int", 8, true, 232)]
public int ptr_indexar;
[DNAFieldAttribute(9, "int", "totindex", "int", 4, false, 240)]
[DNAFieldAttribute(8, "int", 8, "*indexar", "int", true, 232)]
public int indexar;
[DNAFieldAttribute(4, "int", 9, "totindex", "int", false, 240)]
public int totindex;
[DNAFieldAttribute(10, "int", "curindex", "int", 4, false, 244)]
[DNAFieldAttribute(4, "int", 10, "curindex", "int", false, 244)]
public int curindex;
[DNAFieldAttribute(11, "short", "type", "short", 2, false, 248)]
[DNAFieldAttribute(2, "short", 11, "type", "short", false, 248)]
public short type;
[DNAFieldAttribute(12, "short", "active", "short", 2, false, 250)]
[DNAFieldAttribute(2, "short", 12, "active", "short", false, 250)]
public short active;
[DNAFieldAttribute(13, "float", "force", "float", 4, false, 252)]
[DNAFieldAttribute(4, "float", 13, "force", "float", false, 252)]
public float force;
public ObHook() {
this.ptr_next = default;
this.ptr_prev = default;
this.ptr_parent = default;
this.next = default;
this.prev = default;
this.parent = default;
this.parentinv = default;
this.mat = default;
this.cent = default;
this.falloff = default;
this.name = default;
this.ptr_indexar = default;
this.indexar = default;
this.totindex = default;
this.curindex = default;
this.type = default;
this.active = default;
this.force = default;
}
public ObHook(ObHook ptr_next, ObHook ptr_prev, Object ptr_parent, float[,] parentinv, float[,] mat, float[] cent, float falloff, char[] name, int ptr_indexar, int totindex, int curindex, short type, short active, float force) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.ptr_parent = ptr_parent;
public ObHook(ObHook next, ObHook prev, Object parent, float[,] parentinv, float[,] mat, float[] cent, float falloff, char[] name, int indexar, int totindex, int curindex, short type, short active, float force) {
this.next = next;
this.prev = prev;
this.parent = parent;
this.parentinv = parentinv;
this.mat = mat;
this.cent = cent;
this.falloff = falloff;
this.name = name;
this.ptr_indexar = ptr_indexar;
this.indexar = indexar;
this.totindex = totindex;
this.curindex = curindex;
this.type = type;