Преглед изворни кода

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;
}



Loading…
Откажи
Сачувај