Difference between revisions of "DCS func isTargetDetected"
From DCS World Wiki - Hoggitworld.com
(2 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
|fName= isTargetDetected | |fName= isTargetDetected | ||
− | |vNum= 1.2. | + | |vNum= 1.2.6 |
|par1= [[DCS_Class_Controller|Controller]] | |par1= [[DCS_Class_Controller|Controller]] | ||
Line 58: | Line 58: | ||
To output a list of how the aircraft is detecting the target as a message: | To output a list of how the aircraft is detecting the target as a message: | ||
− | local con = Unit.getController(Unit.getByName('whatever') | + | local con = Unit.getController(Unit.getByName('whatever')) |
local target = Unit.getByName('target') | local target = Unit.getByName('target') | ||
local m = {} | local m = {} | ||
for det, enum in pairs(Controller.Detection) do | for det, enum in pairs(Controller.Detection) do | ||
− | m[m+1] = det .. " : " | + | m[#m+1] = det .. " : " |
− | m[m+1] = con:isTargetDetected(target, enum) | + | m[#m+1] = tostring(con:isTargetDetected(target, enum)) |
− | m[m+1] = "\n" | + | m[#m+1] = "\n" |
end | end | ||
trigger.action.outText(table.concat(m), 20, true) | trigger.action.outText(table.concat(m), 20, true) | ||
Line 80: | Line 80: | ||
}} | }} | ||
[[Category:Class Functions|isTargetDetected]] | [[Category:Class Functions|isTargetDetected]] | ||
+ | [[Category:Game Patch 1.2.6|isTargetDetected]] |