Explorar el Código

Apply correct projection to the debug sprite movement.

legacy
Sam Hocevar sam hace 14 años
padre
commit
0fdf9b6874
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. +2
    -1
      src/debugsprite.cpp

+ 2
- 1
src/debugsprite.cpp Ver fichero

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



Cargando…
Cancelar
Guardar