Auto commit by GitHub Actions Workflow

This commit is contained in:
MooseBotter
2024-11-21 22:15:27 +00:00
parent df0e10e643
commit 2c0e868d9e
31 changed files with 1914 additions and 914 deletions

View File

@@ -2858,9 +2858,9 @@ If the DCS Unit object does not exist or is nil, the CLIENT methods will return
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(CLIENT).IsTargetDetected">CLIENT:IsTargetDetected(DCSObject, self, DetectVisual, DetectOptical, DetectRadar, DetectIRST, DetectRWR, DetectDLINK)</a></p></td>
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(CLIENT).IsTargetDetected">CLIENT:IsTargetDetected(DCSObject, DetectVisual, DetectOptical, DetectRadar, DetectIRST, DetectRWR, DetectDLINK)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Check if a target is detected.</p>
<p>Check if a DCS object (unit or static) is detected by the controllable.</p>
</td>
</tr>
<tr class="w3-border">
@@ -12694,14 +12694,16 @@ If <strong>at least one</strong> detection method is specified, only the methods
<div class="w3-card-2 w3-padding-small w3-margin-top">
<div class="w3-theme-l2">
<h2><a id="#(CLIENT).IsTargetDetected" ><strong>CLIENT:IsTargetDetected(DCSObject, self, DetectVisual, DetectOptical, DetectRadar, DetectIRST, DetectRWR, DetectDLINK)</strong></a></h2>
<h2><a id="#(CLIENT).IsTargetDetected" ><strong>CLIENT:IsTargetDetected(DCSObject, DetectVisual, DetectOptical, DetectRadar, DetectIRST, DetectRWR, DetectDLINK)</strong></a></h2>
</div>
<p>Check if a target is detected.</p>
<p>Check if a DCS object (unit or static) is detected by the controllable.</p>
<p>The optional parametes specify the detection methods that can be applied.
If <strong>no</strong> detection method is given, the detection will use <strong>all</strong> the available methods by default.
<p>Note that after a target is detected it remains "detected" for a certain amount of time, even if the controllable cannot "see" the target any more with it's sensors.
The optional parametes specify the detection methods that can be applied.</p>
<p>If <strong>no</strong> detection method is given, the detection will use <strong>all</strong> the available methods by default.
If <strong>at least one</strong> detection method is specified, only the methods set to <em>true</em> will be used.</p>
<div id= "#Functions##IsTargetDetected" class="w3-show w3-white">
@@ -12724,17 +12726,6 @@ If <strong>at least one</strong> detection method is specified, only the methods
</div>
</div>
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half">
<p>
<a href="##(CONTROLLABLE)">#CONTROLLABLE</a>
<strong><strong>self</strong></strong>
</p>
</div>
<div class="w3-half">
<p></p>
</div>
</div>
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half">
<p>
@@ -12820,7 +12811,7 @@ If <strong>at least one</strong> detection method is specified, only the methods
</div>
<div class="w3-half">
<p>True if target is detected.</p>
<p><code>true</code> if target is detected.</p>
</div>
<div class="w3-half">
@@ -12828,7 +12819,23 @@ If <strong>at least one</strong> detection method is specified, only the methods
</div>
<div class="w3-half">
<p>True if target is visible by line of sight.</p>
<p><code>true</code> if target is <em>currently</em> visible by line of sight. Target must be detected (first parameter returns <code>true</code>).</p>
</div>
<div class="w3-half">
<p>#boolean:</p>
</div>
<div class="w3-half">
<p><code>true</code> if target type is known. Target must be detected (first parameter returns <code>true</code>).</p>
</div>
<div class="w3-half">
<p>#boolean:</p>
</div>
<div class="w3-half">
<p><code>true</code> if distance to target is known. Target must be detected (first parameter returns <code>true</code>).</p>
</div>
<div class="w3-half">
@@ -12836,23 +12843,7 @@ If <strong>at least one</strong> detection method is specified, only the methods
</div>
<div class="w3-half">
<p>Mission time when target was detected.</p>
</div>
<div class="w3-half">
<p>#boolean:</p>
</div>
<div class="w3-half">
<p>True if target type is known.</p>
</div>
<div class="w3-half">
<p>#boolean:</p>
</div>
<div class="w3-half">
<p>True if distance to target is known.</p>
<p>Mission time in seconds when target was last detected. Only present if the target is currently not visible (second parameter returns <code>false</code>) otherwise <code>nil</code> is returned.</p>
</div>
<div class="w3-half">
@@ -12860,7 +12851,7 @@ If <strong>at least one</strong> detection method is specified, only the methods
</div>
<div class="w3-half">
<p>Last known position vector of the target.</p>
<p>Last known position vector of the target. Only present if the target is currently not visible (second parameter returns <code>false</code>) otherwise <code>nil</code> is returned.</p>
</div>
<div class="w3-half">
@@ -12868,7 +12859,7 @@ If <strong>at least one</strong> detection method is specified, only the methods
</div>
<div class="w3-half">
<p>Last known velocity vector of the target.</p>
<p>Last known velocity vector of the target. Only present if the target is currently not visible (second parameter returns <code>false</code>) otherwise <code>nil</code> is returned.</p>
</div>
</div>
@@ -12886,8 +12877,9 @@ If <strong>at least one</strong> detection method is specified, only the methods
<p>Check if a certain UNIT is detected by the controllable.</p>
<p>The optional parametes specify the detection methods that can be applied.
If <strong>no</strong> detection method is given, the detection will use <strong>all</strong> the available methods by default.
<p>The optional parametes specify the detection methods that can be applied.</p>
<p>If <strong>no</strong> detection method is given, the detection will use <strong>all</strong> the available methods by default.
If <strong>at least one</strong> detection method is specified, only the methods set to <em>true</em> will be used.</p>
<div id= "#Functions##IsUnitDetected" class="w3-show w3-white">
@@ -12995,7 +12987,7 @@ If <strong>at least one</strong> detection method is specified, only the methods
</div>
<div class="w3-half">
<p>True if target is detected.</p>
<p><code>true</code> if target is detected.</p>
</div>
<div class="w3-half">
@@ -13003,7 +12995,23 @@ If <strong>at least one</strong> detection method is specified, only the methods
</div>
<div class="w3-half">
<p>True if target is visible by line of sight.</p>
<p><code>true</code> if target is <em>currently</em> visible by line of sight. Target must be detected (first parameter returns <code>true</code>).</p>
</div>
<div class="w3-half">
<p>#boolean:</p>
</div>
<div class="w3-half">
<p><code>true</code> if target type is known. Target must be detected (first parameter returns <code>true</code>).</p>
</div>
<div class="w3-half">
<p>#boolean:</p>
</div>
<div class="w3-half">
<p><code>true</code> if distance to target is known. Target must be detected (first parameter returns <code>true</code>).</p>
</div>
<div class="w3-half">
@@ -13011,23 +13019,7 @@ If <strong>at least one</strong> detection method is specified, only the methods
</div>
<div class="w3-half">
<p>Mission time when target was detected.</p>
</div>
<div class="w3-half">
<p>#boolean:</p>
</div>
<div class="w3-half">
<p>True if target type is known.</p>
</div>
<div class="w3-half">
<p>#boolean:</p>
</div>
<div class="w3-half">
<p>True if distance to target is known.</p>
<p>Mission time in seconds when target was last detected. Only present if the target is currently not visible (second parameter returns <code>false</code>) otherwise <code>nil</code> is returned.</p>
</div>
<div class="w3-half">
@@ -13035,7 +13027,7 @@ If <strong>at least one</strong> detection method is specified, only the methods
</div>
<div class="w3-half">
<p>Last known position vector of the target.</p>
<p>Last known position vector of the target. Only present if the target is currently not visible (second parameter returns <code>false</code>) otherwise <code>nil</code> is returned.</p>
</div>
<div class="w3-half">
@@ -13043,7 +13035,7 @@ If <strong>at least one</strong> detection method is specified, only the methods
</div>
<div class="w3-half">
<p>Last known velocity vector of the target.</p>
<p>Last known velocity vector of the target. Only present if the target is currently not visible (second parameter returns <code>false</code>) otherwise <code>nil</code> is returned.</p>
</div>
</div>