diff options
| author | raysan5 <raysan5@gmail.com> | 2016-03-01 20:26:01 +0100 |
|---|---|---|
| committer | raysan5 <raysan5@gmail.com> | 2016-03-01 20:26:01 +0100 |
| commit | 6106ab8a2eda76454b0cd3ff46a079896a90eee8 (patch) | |
| tree | ebe7e7a497497e23892ca97f6c9da2ed5e8eacaf /src/raylib.h | |
| parent | 1674465bdc17f522013c5552bd154f04254d8e74 (diff) | |
| download | raylib-6106ab8a2eda76454b0cd3ff46a079896a90eee8.tar.gz raylib-6106ab8a2eda76454b0cd3ff46a079896a90eee8.zip | |
Added color to DrawBoundigBox()
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raylib.h b/src/raylib.h index 36ca216d..73f92fc2 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -760,7 +760,7 @@ void DrawModel(Model model, Vector3 position, float scale, Color tint); void DrawModelEx(Model model, Vector3 position, Vector3 rotationAxis, float rotationAngle, Vector3 scale, Color tint); // Draw a model with extended parameters void DrawModelWires(Model model, Vector3 position, float scale, Color color); // Draw a model wires (with texture if set) 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 -void DrawBoundingBox(BoundingBox box); // Draw bounding box (wires) +void DrawBoundingBox(BoundingBox box, Color color) // Draw bounding box (wires) void DrawBillboard(Camera camera, Texture2D texture, Vector3 center, float size, Color tint); // Draw a billboard texture void DrawBillboardRec(Camera camera, Texture2D texture, Rectangle sourceRec, Vector3 center, float size, Color tint); // Draw a billboard texture defined by sourceRec |
