Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,21 +11,36 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class ObHook {
[DNAFieldAttribute(0, "ObHook", "*next", 256)]
public ObHook ptr_next;
[DNAFieldAttribute(1, "ObHook", "*prev", 256)]
public ObHook ptr_prev;
[DNAFieldAttribute(2, "Object", "*parent", 1160)]
public Object ptr_parent;
[DNAFieldAttribute(3, "float", "parentinv[4][4]", 4)]
public float[,] parentinv = new System.Single[4,4];
[DNAFieldAttribute(4, "float", "mat[4][4]", 4)]
public float[,] mat = new System.Single[4,4];
[DNAFieldAttribute(5, "float", "cent[3]", 4)]
public float[] cent = new System.Single[3];
[DNAFieldAttribute(6, "float", "falloff", 4)]
public float falloff;
[DNAFieldAttribute(7, "char", "name[64]", 1)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(8, "int", "*indexar", 4)]
public int ptr_indexar;
[DNAFieldAttribute(9, "int", "totindex", 4)]
public int totindex;
[DNAFieldAttribute(10, "int", "curindex", 4)]
public int curindex;
[DNAFieldAttribute(11, "short", "type", 2)]
public short type;
[DNAFieldAttribute(12, "short", "active", 2)]
public short active;
[DNAFieldAttribute(13, "float", "force", 4)]
public float force;
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;