Update models_loading.c

This commit is contained in:
Ray 2021-05-31 18:36:03 +02:00
parent 9cc2cee936
commit d39d26f275
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ int main(void)
if (IsMouseButtonPressed(MOUSE_BUTTON_LEFT))
{
// Check collision between ray and box
if (CheckCollisionRayBox(GetMouseRay(GetMousePosition(), camera), bounds)) selected = !selected;
if (GetRayCollisionBox(GetMouseRay(GetMousePosition(), camera), bounds).hit) selected = !selected;
else selected = false;
}
//----------------------------------------------------------------------------------