NvCloth
Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
@@ -112,7 +112,7 @@ namespace NvCloth
|
||||
colliderConfig.get(),
|
||||
static_cast<const Physics::SphereShapeConfiguration*>(shapeConfigPair.second.get()),
|
||||
static_cast<int>(jointIndex),
|
||||
sphereCount);
|
||||
static_cast<int>(sphereCount));
|
||||
|
||||
sphereColliders.push_back(sphereCollider);
|
||||
++sphereCount;
|
||||
@@ -144,9 +144,9 @@ namespace NvCloth
|
||||
colliderConfig.get(),
|
||||
static_cast<const Physics::CapsuleShapeConfiguration*>(shapeConfigPair.second.get()),
|
||||
static_cast<int>(jointIndex),
|
||||
capsuleCount * 2, // Each capsule holds 2 sphere indices
|
||||
sphereCount + 0, // First sphere index
|
||||
sphereCount + 1); // Second sphere index
|
||||
static_cast<int>(capsuleCount * 2), // Each capsule holds 2 sphere indices
|
||||
static_cast<int>(sphereCount + 0), // First sphere index
|
||||
static_cast<int>(sphereCount + 1)); // Second sphere index
|
||||
|
||||
capsuleColliders.push_back(capsuleCollider);
|
||||
++capsuleCount;
|
||||
|
||||
@@ -481,13 +481,13 @@ namespace NvCloth
|
||||
|
||||
if (remappedIndex >= 0)
|
||||
{
|
||||
actorClothSkinning->m_simulatedVertices[remappedIndex] = vertexIndex;
|
||||
actorClothSkinning->m_simulatedVertices[remappedIndex] = static_cast<AZ::u32>(vertexIndex);
|
||||
}
|
||||
|
||||
if (remappedIndex < 0 ||
|
||||
originalMeshParticles[vertexIndex].GetW() == 0.0f)
|
||||
{
|
||||
actorClothSkinning->m_nonSimulatedVertices.emplace_back(vertexIndex);
|
||||
actorClothSkinning->m_nonSimulatedVertices.emplace_back(static_cast<AZ::u32>(vertexIndex));
|
||||
}
|
||||
}
|
||||
actorClothSkinning->m_nonSimulatedVertices.shrink_to_fit();
|
||||
|
||||
@@ -556,7 +556,7 @@ namespace NvCloth
|
||||
|
||||
for (size_t index = 0; index < numVertices; ++index)
|
||||
{
|
||||
const int renderVertexIndex = firstVertex + index;
|
||||
const int renderVertexIndex = static_cast<int>(firstVertex + index);
|
||||
|
||||
const SimParticleFormat& renderParticle = renderParticles[renderVertexIndex];
|
||||
destVerticesBuffer[index].Set(
|
||||
|
||||
Reference in New Issue
Block a user