Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
tweak(conf): added option to disable large waypoint marker
  • Loading branch information
renzuzu committed Aug 27, 2021
1 parent 9db89b2 commit 35aa1ad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion renzu_hud/client/function.lua
Expand Up @@ -438,7 +438,9 @@ function Hud:inVehicleFunctions()
while not self.loadedplate do
Wait(100)
end
self:NuiDistancetoWaypoint()
if config.WaypointMarkerLarge then
self:NuiDistancetoWaypoint()
end
self:NuiMileAge()
if not config.enable_carui_perclass then
self:NuiShowMap()
Expand Down
2 changes: 1 addition & 1 deletion renzu_hud/conf/vehicle.lua
Expand Up @@ -2,7 +2,7 @@
config.enable_carui = true -- enable/disable the car UI (THIS WILL DISABLE ALL VEHICLE FUNCTION AS WELL)
config.carui = 'simple' -- Choose a Carui Version ( simple, minimal, modern )
config.carui_metric = 'mph' -- Speed Metrics to Use 'kmh' or 'mph'

config.WaypointMarkerLarge = false -- disable / enable large marker while on vehicle waypoint
config.available_carui = {
['simple'] = true,
['minimal'] = true,
Expand Down

0 comments on commit 35aa1ad

Please sign in to comment.