From 3f6813cf9a0250c6d3f00ae30e4c64de2019067f Mon Sep 17 00:00:00 2001 From: Kyle Date: Thu, 14 Aug 2025 09:54:36 -0400 Subject: [PATCH] Update rmodels.c --- src/rmodels.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/rmodels.c b/src/rmodels.c index 24b0f17ab..e630c54f0 100644 --- a/src/rmodels.c +++ b/src/rmodels.c @@ -3840,6 +3840,16 @@ void DrawModelWiresEx(Model model, Vector3 position, Vector3 rotationAxis, float rlDisableWireMode(); } +// Draw a model wires (with texture if set) with pro parameters +void DrawModelWiresPro(Model model, Matrix transform, Color tint) +{ + rlEnableWireMode(); + + DrawModelPro(model, transform, tint); + + rlDisableWireMode(); +} + // Draw a model points // WARNING: OpenGL ES 2.0 does not support point mode drawing void DrawModelPoints(Model model, Vector3 position, float scale, Color tint)