Added Marker Text display to config

This commit is contained in:
Joe Szymkowicz
2020-09-06 09:22:38 -05:00
parent 777f27317e
commit 8834fb369e
2 changed files with 4 additions and 1 deletions
+3 -1
View File
@@ -796,7 +796,9 @@ Citizen.CreateThread(function()
if distance < Config.DrawDistance then
DrawMarker(Config.MarkerType, property.entering.x, property.entering.y, property.entering.z, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, Config.MarkerSize.x, Config.MarkerSize.y, Config.MarkerSize.z, Config.MarkerColor.r, Config.MarkerColor.g, Config.MarkerColor.b, 100, false, true, 2, false, nil, nil, false)
ESX.Game.Utils.DrawText3D(property.entering, property.name, 2)
if Config.MarkerText == true then
ESX.Game.Utils.DrawText3D(property.entering, property.name, 2)
end
letSleep = false
end