TODO: DrawTextPro() rotation not working?
This commit is contained in:
parent
b55418effd
commit
7e27c2ffa8
1 changed files with 5 additions and 2 deletions
|
@ -893,12 +893,15 @@ void DrawTextEx(Font font, const char *text, Vector2 position, float fontSize, f
|
||||||
// Draw text using Font and pro parameters (rotation)
|
// Draw text using Font and pro parameters (rotation)
|
||||||
void DrawTextPro(Font font, const char *text, Vector2 position, Vector2 origin, float rotation, float fontSize, float spacing, Color tint)
|
void DrawTextPro(Font font, const char *text, Vector2 position, Vector2 origin, float rotation, float fontSize, float spacing, Color tint)
|
||||||
{
|
{
|
||||||
|
// TODO: Not working... why???
|
||||||
|
|
||||||
rlPushMatrix();
|
rlPushMatrix();
|
||||||
|
|
||||||
rlTranslatef(origin.x, origin.y, 0.0f);
|
//rlTranslatef(position.x, position.y, 0.0f);
|
||||||
rlRotatef(rotation, 0.0f, 0.0f, 1.0f);
|
rlRotatef(rotation, 0.0f, 0.0f, 1.0f);
|
||||||
|
rlTranslatef(-origin.x, -origin.y, 0.0f);
|
||||||
|
|
||||||
DrawTextEx(font, text, position, fontSize, spacing, tint);
|
DrawTextEx(font, text, (Vector2){ position.x, position.y }, fontSize, spacing, tint);
|
||||||
|
|
||||||
rlPopMatrix();
|
rlPopMatrix();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue