Added DrawModelTfm() to raylib.h and CHANGELOG

This commit is contained in:
André Jonsson 2024-08-11 20:06:57 +02:00
parent 03a8c635eb
commit ed84303967
2 changed files with 3 additions and 0 deletions

View File

@ -3,6 +3,8 @@ changelog
Current Release: raylib 5.0 (18 November 2023)
[models] ADDED: DrawModelTfm() supply Matrix instead of its component.
-------------------------------------------------------------------------
Release: raylib 5.0 - 10th Anniversary Edition (18 November 2023)
-------------------------------------------------------------------------

View File

@ -1538,6 +1538,7 @@ RLAPI BoundingBox GetModelBoundingBox(Model model);
// Model drawing functions
RLAPI void DrawModel(Model model, Vector3 position, float scale, Color tint); // Draw a model (with texture if set)
RLAPI void DrawModelEx(Model model, Vector3 position, Vector3 rotationAxis, float rotationAngle, Vector3 scale, Color tint); // Draw a model with extended parameters
RLAPI void DrawModelTfm(Model model, Matrix transform, Color tint); // Draw a model with transform
RLAPI void DrawModelWires(Model model, Vector3 position, float scale, Color tint); // Draw a model wires (with texture if set)
RLAPI void DrawModelWiresEx(Model model, Vector3 position, Vector3 rotationAxis, float rotationAngle, Vector3 scale, Color tint); // Draw a model wires (with texture if set) with extended parameters
RLAPI void DrawBoundingBox(BoundingBox box, Color color); // Draw bounding box (wires)