fix order of triangle indices for single-sided quad collider

Signed-off-by: greerdv <greerdv@amazon.com>
This commit is contained in:
greerdv
2022-01-20 13:24:01 +00:00
parent cc50a18fe9
commit a8eb5be2e6
@@ -407,8 +407,8 @@ namespace PhysX
constexpr AZ::u32 indexCount = 6;
const AZ::u32 indices[indexCount] =
{
0, 1, 2,
0, 2, 3
0, 2, 1,
0, 3, 2
};
bool cookingResult = false;