Generated new code and added initial data handling

This commit is contained in:
mm00
2025-01-27 19:24:50 +01:00
parent ebcc629feb
commit 146a3992ce
940 changed files with 11560 additions and 9 deletions

View File

@@ -43,6 +43,22 @@ namespace BlendFile.DNA {
public short active;
[DNAFieldAttribute(13, "float", "force", 4)]
public float force;
public ObHook() {
this.ptr_next = default;
this.ptr_prev = default;
this.ptr_parent = default;
this.parentinv = default;
this.mat = default;
this.cent = default;
this.falloff = default;
this.name = default;
this.ptr_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;