Skip to content

Commit 94c897f

Browse files
committed
Fixed collision issues with shapes
1 parent 7fa552a commit 94c897f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

engine/source/ts/tsMesh.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -3431,7 +3431,7 @@ void TSMesh::assemble(bool skip)
34313431

34323432
alloc.checkGuard();
34333433

3434-
if (alloc.allocShape32(0) && TSShape::smReadVersion < 19)
3434+
if (alloc.allocShape32(0))// && TSShape::smReadVersion < 19)
34353435
// only do this if we copied the data...
34363436
computeBounds();
34373437

@@ -3569,7 +3569,7 @@ void TSSkinMesh::assemble(bool skip)
35693569

35703570
alloc.checkGuard();
35713571

3572-
if (alloc.allocShape32(0) && TSShape::smReadVersion < 19)
3572+
if (alloc.allocShape32(0))// && TSShape::smReadVersion < 19)
35733573
// only do this if we copied the data...
35743574
TSMesh::computeBounds();
35753575
}

0 commit comments

Comments
 (0)