Regenerated codefiles
This commit is contained in:
@@ -15,22 +15,22 @@ namespace BlendFile.DNA {
|
||||
|
||||
[DNAClassAttribute(468, "CollisionModifierData", 152)]
|
||||
public class CollisionModifierData {
|
||||
[DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120, false, 0)]
|
||||
[DNAFieldAttribute(120, "ModifierData", 0, "modifier", "ModifierData", false, 0)]
|
||||
public ModifierData modifier;
|
||||
[DNAFieldAttribute(8, "int", "mvert_num", "int", 4, false, 120)]
|
||||
[DNAFieldAttribute(4, "int", 8, "mvert_num", "int", false, 120)]
|
||||
public int mvert_num;
|
||||
[DNAFieldAttribute(9, "int", "tri_num", "int", 4, false, 124)]
|
||||
[DNAFieldAttribute(4, "int", 9, "tri_num", "int", false, 124)]
|
||||
public int tri_num;
|
||||
[DNAFieldAttribute(10, "float", "time_x", "float", 4, false, 128)]
|
||||
[DNAFieldAttribute(4, "float", 10, "time_x", "float", false, 128)]
|
||||
public float time_x;
|
||||
[DNAFieldAttribute(11, "float", "time_xnew", "float", 4, false, 132)]
|
||||
[DNAFieldAttribute(4, "float", 11, "time_xnew", "float", false, 132)]
|
||||
public float time_xnew;
|
||||
[DNAFieldAttribute(12, "char", "is_static", "char", 1, false, 136)]
|
||||
[DNAFieldAttribute(1, "char", 12, "is_static", "char", false, 136)]
|
||||
public char is_static;
|
||||
[DNAFieldAttribute(13, "char", "_pad[7]", "System.Char[]", 7, false, 137)]
|
||||
[DNAFieldAttribute(7, "char", 13, "_pad[7]", "System.Char[]", false, 137)]
|
||||
public char[] _pad = new System.Char[7];
|
||||
[DNAFieldAttribute(14, "BVHTree", "*bvhtree", "BVHTree", 8, true, 144)]
|
||||
public BVHTree ptr_bvhtree;
|
||||
[DNAFieldAttribute(8, "BVHTree", 14, "*bvhtree", "BVHTree", true, 144)]
|
||||
public BVHTree bvhtree;
|
||||
public CollisionModifierData() {
|
||||
this.modifier = default;
|
||||
this.mvert_num = default;
|
||||
@@ -39,9 +39,9 @@ namespace BlendFile.DNA {
|
||||
this.time_xnew = default;
|
||||
this.is_static = default;
|
||||
this._pad = default;
|
||||
this.ptr_bvhtree = default;
|
||||
this.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) {
|
||||
public CollisionModifierData(ModifierData modifier, int mvert_num, int tri_num, float time_x, float time_xnew, char is_static, char[] _pad, BVHTree bvhtree) {
|
||||
this.modifier = modifier;
|
||||
this.mvert_num = mvert_num;
|
||||
this.tri_num = tri_num;
|
||||
@@ -49,7 +49,7 @@ namespace BlendFile.DNA {
|
||||
this.time_xnew = time_xnew;
|
||||
this.is_static = is_static;
|
||||
this._pad = _pad;
|
||||
this.ptr_bvhtree = ptr_bvhtree;
|
||||
this.bvhtree = bvhtree;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user