Skip to content

Commit

Permalink
simplifies color multiplication DrawModelEx
Browse files Browse the repository at this point in the history
  • Loading branch information
Bigfoot71 committed May 23, 2024
1 parent d9c5066 commit 7070b70
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/rmodels.c
Original file line number Diff line number Diff line change
Expand Up @@ -3546,10 +3546,10 @@ void DrawModelEx(Model model, Vector3 position, Vector3 rotationAxis, float rota
Color color = model.materials[model.meshMaterial[i]].maps[MATERIAL_MAP_DIFFUSE].color;

Color colorTint = WHITE;
colorTint.r = (unsigned char)((((float)color.r/255.0f)*((float)tint.r/255.0f))*255.0f);
colorTint.g = (unsigned char)((((float)color.g/255.0f)*((float)tint.g/255.0f))*255.0f);
colorTint.b = (unsigned char)((((float)color.b/255.0f)*((float)tint.b/255.0f))*255.0f);
colorTint.a = (unsigned char)((((float)color.a/255.0f)*((float)tint.a/255.0f))*255.0f);
colorTint.r = (unsigned char)((color.r*tint.r)/255);
colorTint.g = (unsigned char)((color.g*tint.g)/255);
colorTint.b = (unsigned char)((color.b*tint.b)/255);
colorTint.a = (unsigned char)((color.a*tint.a)/255);

model.materials[model.meshMaterial[i]].maps[MATERIAL_MAP_DIFFUSE].color = colorTint;
DrawMesh(model.meshes[i], model.materials[model.meshMaterial[i]], model.transform);
Expand Down

0 comments on commit 7070b70

Please sign in to comment.