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

@@ -31,6 +31,16 @@ namespace BlendFile.DNA {
public char[] _pad = new System.Char[7];
[DNAFieldAttribute(14, "BVHTree", "*bvhtree", 0)]
public BVHTree ptr_bvhtree;
public CollisionModifierData() {
this.modifier = default;
this.mvert_num = default;
this.tri_num = default;
this.time_x = default;
this.time_xnew = default;
this.is_static = default;
this._pad = default;
this.ptr_bvhtree = default;
}
public CollisionModifierData(ModifierData modifier, int mvert_num, int tri_num, float time_x, float time_xnew, char is_static, char[] _pad, BVHTree ptr_bvhtree) {
this.modifier = modifier;
this.mvert_num = mvert_num;