Add option to disable blip and nametag display at client side

This commit is contained in:
sardelka9515
2022-11-19 14:26:31 +08:00
parent e6c8d4df46
commit 78f0dfaebb
15 changed files with 47714 additions and 505 deletions

View File

@ -79,5 +79,15 @@ namespace RageCoop.Client
/// Show the owner name of the entity you're aiming at
/// </summary>
public bool ShowEntityOwnerName { get; set; } = false;
/// <summary>
/// Show other player's nametag on your screen, only effective if server didn't disable nametag display
/// </summary>
public bool ShowPlayerNameTag { get; set; } = true;
/// <summary>
/// Show other player's blip on map, can be overridden by server resource
/// </summary>
public bool ShowPlayerBlip { get; set; } = true;
}
}