Hey all, so my buddy and I are rookies trying to make a little tank game and I am experiencing some really annoying issues all of the sudden. I will lay out the issue and story as best I can and thank you in advance to anyone willing to check this out.
So the issue is that the tank seems to be stuttering/fighting against something when moving. Also, unless I turn the Angular Damping up to at least 5.0 the tank sort of veers/slides side to side rather than going in a straight line. More accurately, though it takes more like 10.0 Angular Damping to get stable, straight movement but the stuttering issue seems to persist. On top of that, I have to apply pretty insane Force and Torque for movement and turning, respectively.
So, originally we were working with a mesh that was about 2-3X bigger than our current one. Because it was so big I had it scaled to 0.5, 0.5 ,0.5. Still had to apply MASSIVE physics numbers for movement, but the movement was smooth and when it was going straight, it stayed straight.
My buddy has since re-scaled the mesh and because everything else in the level was build for a bigger mesh I scaled it up to 5, 5, 5. There was no noticeable difference in its performance, other than just having to apply more force and torque and adjust damping. The only real issue with these two iterations was that because of the scaling and overriding the mass it caused the tank to fall like a feather when getting airborne at all. Mass was overridden to 50,000kg in both of these examples, as anything lower seemed to result in very little stability for the tank.
So now I decide I am going to make a new level, scale it to 1, 1, 1 like it is supposed to be, and just leave the mass at default (The number in editor shows 107.55658). The tank now falls more naturally, but now I have these new issues I mentioned above. It’s so hard to describe what I’m dealing with and this probably makes no sense. It definitely doesn’t make sense to me.
So my current numbers which yield decent movement and turning, but still not even enough torque to turn the tank when it’s sitting still are:
Scale = 1, 1, 1
Force = 30,000,000.0
Torque = 3,000,000,000.0
Linear Damping = 1.0
Angular Damping = 5.0
I have shared the movement code for reference. If anyone else has faced a similar issue I’d appreciate any help or insight. I don’t understand why it worked fine with two different meshes at two different scales, but the same mesh just scaled to default 1 is somehow a huge issue. Should I just override mass again and figure out another solution for the slow falling? Like I said, I’m a rookie and this is driving me nuts. Thanks to anyone who reads this.
Edit: I forgot to add that while Linear Damping at 10.0 yields straight movement, it only does so until a turn. Once I do that, the tank never seems to be able to just move straight. The problem in general seems really intermittent. Ugh, it’s agonizing to try to describe, so sorry guys.
void ATankPlayerPawn::Move(const FInputActionValue& Value)
{
float AxisValue = Value.Get();
float DeltaTime = UGameplayStatics::GetWorldDeltaSeconds(this);
FVector Start = BaseMesh->GetComponentLocation();
FVector End = Start + FVector(0,0, -200); // Cast downward 200 units
FHitResult HitResult;
FCollisionQueryParams TraceParams;
TraceParams.AddIgnoredActor(this);
bool bHit = GetWorld()->LineTraceSingleByChannel(HitResult, Start, End, ECollisionChannel::ECC_Visibility, TraceParams);
if (bHit)
{
//
float DistanceToGround = (Start - HitResult.ImpactPoint).Size();
if (DistanceToGround <= 200.0f)
{
FVector ForwardVector = BaseMesh->GetForwardVector();
FVector Force = ForwardVector * AxisValue * MoveForce * DeltaTime;
BaseMesh->AddForce(Force);
// Play movement sound
if (MovementAudioComponent && !MovementAudioComponent->IsPlaying())
{
MovementAudioComponent->Play();
}
bIsMoving = true;
// Only activate trail if setting is enabled
if (UTankGameUserSettings* UserSettings = UTankGameUserSettings::GetTankGameUserSettings())
{
if (TrailEffect)
{
bool bShouldBeActive = UserSettings->GetTankTrailEffectEnabled() && AxisValue != 0.0f;
if (bShouldBeActive != TrailEffect->IsActive())
{
TrailEffect->SetActive(bShouldBeActive);
UE_LOG(LogTemp, Log, TEXT("Trail Set to %d in Move"), bShouldBeActive);
}
}
}
}
else if (TrailEffect && TrailEffect->IsActive() && AxisValue == 0.0f)
{
TrailEffect->SetActive(false);
}
}
}
void ATankPlayerPawn::Turn(const FInputActionValue& Value)
{
float AxisValue = Value.Get();
float DeltaTime = UGameplayStatics::GetWorldDeltaSeconds(this);
float AdjustedAxisValue = AxisValue * ControllerSensitivity;
FVector Torque(0, 0, TurnTorque * AxisValue * DeltaTime);
BaseMesh->AddTorqueInDegrees(Torque);
}