소스 검색

Apply correct projection to the debug sprite movement.

legacy
Sam Hocevar sam 14 년 전
부모
커밋
0fdf9b6874
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. +2
    -1
      src/debugsprite.cpp

+ 2
- 1
src/debugsprite.cpp 파일 보기

@@ -8,6 +8,7 @@
#endif

#include <cstdio>
#include <cmath>

#include "core.h"
#include "debugsprite.h"
@@ -50,7 +51,7 @@ void DebugSprite::TickGame(float deltams)
Entity::TickGame(deltams);

Float2 axis = Input::GetAxis(0);
data->x += 0.1f * deltams * axis.x;
data->x += 0.1f * sqrtf(2.0f) * deltams * axis.x;
data->y += 0.1f * deltams * axis.y;
}



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