diff --git a/Content/Blueprints/Character/BP_BlasterCharacter.uasset b/Content/Blueprints/Character/BP_BlasterCharacter.uasset index 6dba4c5..de55908 100644 Binary files a/Content/Blueprints/Character/BP_BlasterCharacter.uasset and b/Content/Blueprints/Character/BP_BlasterCharacter.uasset differ diff --git a/Source/Blaster/PlayerController/BlasterPlayerController.cpp b/Source/Blaster/PlayerController/BlasterPlayerController.cpp index e4ba2b3..7f71be1 100644 --- a/Source/Blaster/PlayerController/BlasterPlayerController.cpp +++ b/Source/Blaster/PlayerController/BlasterPlayerController.cpp @@ -41,8 +41,9 @@ void ABlasterPlayerController::Tick(float DeltaTime) if (DebugWidget) { - SetDebugMsg1(TEXT("ServerTime: "), FString::Printf(TEXT("%02f"), GetServerTime())); - SetDebugMsg2(TEXT("ClientServerDelta: "), FString::Printf(TEXT("%02f"), ClientServerDelta)); + SetDebugMsg1(TEXT("ServerTime: "), FString::Printf(TEXT("%f"), GetServerTime())); + SetDebugMsg2(TEXT("ClientServerDelta: "), FString::Printf(TEXT("%f"), ClientServerDelta)); + SetDebugMsg3(TEXT("LevelStartingTime: "), FString::Printf(TEXT("%f"), LevelStartingTime)); } }