Skip to content

Commit

Permalink
Update Quickstart
Browse files Browse the repository at this point in the history
  • Loading branch information
apkatsikas authored Dec 6, 2024
1 parent 581981f commit 046e419
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/docs/01_quickstart/02-hello-world.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ while (!WindowShouldClose())

foreach(var body in world.RigidBodies)
{
if(body == planeBody) continue; // do not draw this
if (body == planeBody || body == world.NullBody) continue; // do not draw this
DrawMesh(boxMesh, boxMat, GetRayLibTransformMatrix(body));
}

Expand Down

0 comments on commit 046e419

Please sign in to comment.