Basically, when you create a custom frame marker, which visibility to WhenVisible and attaching it to a player (playerlogin="login"), the marker disappears when the player is driving certain cars.
In other words:
- In TrackMania.
- Marker must be using a frame from a custom layer (have its manialinkframeid set to a frame ID in Markers type layer).
- Marker visibility must be set to WhenVisible.
- Marker must be attached to a player (either using playerlogin or playerid).
- The player must be spawned and drive either: Canyon Car, Valley Car, Lagoon Car, Coast Car, Desert Car.
Why it matters to me:
Pursuit used to be played in "hide and seek" mode, which basically prevents you from seeing other players' names through walls. This cannot be a thing right now, as the names will be randomly invisible, preventing players from knowing which side the player is on.
Additionally, it would reduce the information bloat that currently happens on channels, also allowing me to reduce loss in FPS from calculating distances to all players.
Example
You can see that using specific cars, marker won't be shown unless the car is airborne, as the block I'm driving on obstructs the marker anchor.
Possible solution: copy over the visibility behavior from the regular label markers or take box property into account when casting the obstruction checking ray.
Bonus report!
In spectator mode, default nameplates ignore all set visibility settings. It doesn't happen while playing.
In other words, setting these has no effect in spectator mode (annoying!):
Code: Select all
ClientUI.TeamLabelsVisibility = CUIConfig::ELabelsVisibility::Never;
ClientUI.OpposingTeamLabelsVisibility = CUIConfig::ELabelsVisibility::Never;
ClientUI.AlliesLabelsVisibility = CUIConfig::ELabelsVisibility::Never;
