mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-28 07:45:40 +00:00
Increment vertex pointer by 3, not 1.
This commit is contained in:
parent
153d611bcd
commit
d12310602d
1 changed files with 1 additions and 1 deletions
|
|
@ -784,7 +784,7 @@ bool TSMesh::castRayRendered( S32 frame, const Point3F & start, const Point3F &
|
|||
// gonna depend on what kind of primitive it is...
|
||||
if ( (draw.matIndex & TSDrawPrimitive::TypeMask) == TSDrawPrimitive::Triangles )
|
||||
{
|
||||
for ( S32 j = 0; j < draw.numElements-2; j++)
|
||||
for ( S32 j = 0; j < draw.numElements-2; j += 3 )
|
||||
{
|
||||
idx0 = indices[drawStart + j + 0];
|
||||
idx1 = indices[drawStart + j + 1];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue