I'm watching the Marketplace like everyday and I missed the release oO
It's looking amazing!
Can't wait to try it out
It's looking amazing!
Can't wait to try it out

// Updates minimap draw color void AMyCharacter::RefreshMinimapTeamColor() { const FLinearColor TeamColor = IsLocalPlayerTeam() ? FLinearColor::Blue : FLinearColor::Red; TeamMapIcon->SetIconDrawColor(TeamColor); }
// Updates icon visibility based on whether local player can see character and whether character is alive void AMyCharacter::RefreshMinimapVisibility() { const bool bCharacterVisibleLocally = LocalVisibility != EVisionTargetVisibility::Hidden; const bool bCharacterIsAlive = IsAlive(); const bool bIconVisible = bCharacterVisibleLocally && bCharacterIsAlive; TeamMapIcon->SetIconVisible(bIconVisible); }
Comment