소스 검색

Corrected issue with matrix order multiplication #1054

pull/1092/head
Ray 5 년 전
부모
커밋
98a7d35bab
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. +3
    -3
      src/core.c

+ 3
- 3
src/core.c 파일 보기

@ -1303,11 +1303,11 @@ void BeginMode2D(Camera2D camera)
rlLoadIdentity(); // Reset current matrix (MODELVIEW)
// Apply screen scaling if required
rlMultMatrixf(MatrixToFloat(screenScaling));
// Apply 2d camera transformation to modelview
rlMultMatrixf(MatrixToFloat(GetCameraMatrix2D(camera)));
// Apply screen scaling if required
rlMultMatrixf(MatrixToFloat(screenScaling));
}
// Ends 2D mode with custom camera

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