Cody WIP before cleanup

This commit is contained in:
2026-06-17 22:49:44 -04:00
parent 299687734f
commit abccaaa14c
7 changed files with 224 additions and 5 deletions

View File

@@ -33,13 +33,14 @@ void AProjectileBase::BeginPlay()
if (collision)
collision->OnComponentHit.AddDynamic(this, &AProjectileBase::OnHit);
}
// Called every frame
void AProjectileBase::Tick(float DeltaTime)
{
Super::Tick(DeltaTime);
FVector Location = GetActorLocation();
GEngine->AddOnScreenDebugMessage(3,10.f,FColor::Red,FString::Printf(TEXT("Projectile Location %f,%f,%f"), Location.X, Location.Y, Location.Z));
}