Removed debug output
This commit is contained in:
@@ -25,7 +25,6 @@ public:
|
|||||||
if (e.Command == "Right") {
|
if (e.Command == "Right") {
|
||||||
float value = std::max(-1.f, std::min(e.Value, 1.f));
|
float value = std::max(-1.f, std::min(e.Value, 1.f));
|
||||||
m_Velocity.x = value;
|
m_Velocity.x = value;
|
||||||
LOG_INFO("%f", value);
|
|
||||||
}
|
}
|
||||||
if (e.Command == "Forward") {
|
if (e.Command == "Forward") {
|
||||||
float value = std::max(-1.f, std::min(e.Value, 1.f));
|
float value = std::max(-1.f, std::min(e.Value, 1.f));
|
||||||
|
|||||||
Reference in New Issue
Block a user