Skip to content

Commit d552eae

Browse files
committed
removed annoying debug thing
1 parent 7125324 commit d552eae

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/g_actors.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,6 @@ void GraphXPlayer::doMovement(int direction[2])
489489
{
490490
if(jph_character == nullptr)
491491
return;
492-
PRINT_MARKER
493492
JPH::Vec3 current_velocity = jph_character->GetLinearVelocity();
494493
JPH::Vec3 wish_velocity = JPH::Vec3(0.0f, 0.0f, 0.0f);
495494
wish_velocity += convertMath<JPH::Vec3>(orientation_grounded_front) * static_cast<float>(direction[0] * movement_speed);
@@ -516,7 +515,6 @@ void GraphXPlayer::doMovement(int direction[2])
516515
if(new_velocity == current_velocity)
517516
return;
518517
jph_character->SetLinearVelocity(new_velocity);
519-
PRINT_MARKER
520518
}
521519

522520
void GraphXPlayer::doMouseMovement(glm::vec2 mouse_offset)

0 commit comments

Comments
 (0)