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
+53 -61
View File
@@ -3065,9 +3065,9 @@ amount of fuel in the group.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(GROUP).IsTargetDetected">GROUP: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="##(GROUP).IsTargetDetected">GROUP: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">
@@ -13832,14 +13832,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="#(GROUP).IsTargetDetected" ><strong>GROUP:IsTargetDetected(DCSObject, self, DetectVisual, DetectOptical, DetectRadar, DetectIRST, DetectRWR, DetectDLINK)</strong></a></h2>
<h2><a id="#(GROUP).IsTargetDetected" ><strong>GROUP: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">
@@ -13862,17 +13864,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>
@@ -13958,7 +13949,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">
@@ -13966,7 +13957,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">
@@ -13974,23 +13981,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">
@@ -13998,7 +13989,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">
@@ -14006,7 +13997,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>
@@ -14024,8 +14015,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">
@@ -14133,7 +14125,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">
@@ -14141,7 +14133,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">
@@ -14149,23 +14157,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">
@@ -14173,7 +14165,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">
@@ -14181,7 +14173,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>