File size: 1,174 Bytes
b6a38d7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
if Platform.cmdline then return end
MapVar("s_DbgDrawWeaponNoise", false)
function DbgShowWeaponNoise(show, units)
if show then
local color = const.clrRed
local prev_meshes = s_DbgDrawWeaponNoise or empty_table
s_DbgDrawWeaponNoise = {}
for i, unit in ipairs(units) do
local weapon = unit:GetActiveWeapons("Firearm")
local radius = weapon and weapon.Noise * const.SlabSizeX or 0
local mesh = prev_meshes[unit]
if mesh then
prev_meshes[unit] = nil
end
if radius > 0 then
if not mesh then
mesh = CreateCircleMesh(radius, color, point30)
mesh:SetHierarchyGameFlags(const.gofLockedOrientation)
unit:Attach(mesh)
end
s_DbgDrawWeaponNoise[unit] = mesh
elseif mesh then
DoneObjet(mesh)
end
end
for i, mesh in pairs(prev_meshes) do
DoneObject(mesh)
end
else
for k, mesh in pairs(s_DbgDrawWeaponNoise) do
DoneObject(mesh)
end
s_DbgDrawWeaponNoise = false
end
end
function DbgToggleWeaponNoise()
DbgShowWeaponNoise(not s_DbgDrawWeaponNoise, SelectedObj and { SelectedObj })
end
OnMsg.SelectionChange = function() DbgShowWeaponNoise(s_DbgDrawWeaponNoise, SelectedObj and { SelectedObj }) end
|