Explorar el Código

fixed a minor typo in the input tutorial

legacy
Benlitz benlitz hace 11 años
padre
commit
f7da613a70
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      demos/tutorial/07_input.cpp

+ 1
- 1
demos/tutorial/07_input.cpp Ver fichero

@@ -104,7 +104,7 @@ public:
}
if (lol::abs(controller->GetAxis(AXIS_PITCH).GetValue()) > 0.2f)
m_pitch_angle -= controller->GetAxis(AXIS_PITCH).GetValue() * seconds * 100;
if (lol::abs(controller->GetAxis(AXIS_YAW).GetValue()) > 1.0f)
if (lol::abs(controller->GetAxis(AXIS_YAW).GetValue()) > 0.2f)
m_yaw_angle += controller->GetAxis(AXIS_YAW).GetValue() * seconds * 100;

InputDevice* mouse = InputDevice::Get("Mouse");


Cargando…
Cancelar
Guardar