Remove path in map text
This commit is contained in:
parent
f510803567
commit
bc386b35da
|
@ -645,7 +645,7 @@ class HUD(object):
|
|||
'Client: % 16.0f FPS' % clock.get_fps(),
|
||||
'',
|
||||
'Vehicle: % 20s' % get_actor_display_name(world.player, truncate=20),
|
||||
'Map: % 20s' % world.map.name,
|
||||
'Map: % 20s' % world.map.name.split('/')[-1],
|
||||
'Simulation time: % 12s' % datetime.timedelta(seconds=int(self.simulation_time)),
|
||||
'',
|
||||
'Speed: % 15.0f km/h' % (3.6 * math.sqrt(v.x**2 + v.y**2 + v.z**2)),
|
||||
|
|
Loading…
Reference in New Issue