소스 검색

TODO: DrawTextPro() rotation not working?

pull/1919/head
raysan5 4 년 전
부모
커밋
7e27c2ffa8
1개의 변경된 파일5개의 추가작업 그리고 2개의 파일을 삭제
  1. +5
    -2
      src/text.c

+ 5
- 2
src/text.c 파일 보기

@ -893,12 +893,15 @@ void DrawTextEx(Font font, const char *text, Vector2 position, float fontSize, f
// 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)
{
// TODO: Not working... why???
rlPushMatrix();
rlTranslatef(origin.x, origin.y, 0.0f);
o">//rlTranslatef(position.x, position.y, 0.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, p">(Vector2){ position.x, position.y }, fontSize, spacing, tint);
rlPopMatrix();
}

불러오는 중...
취소
저장