|
195 | 195 | Output latency of the [AudioServer]. Equivalent to calling [method AudioServer.get_output_latency], it is not recommended to call this every frame.
|
196 | 196 | </constant>
|
197 | 197 | <constant name="NAVIGATION_ACTIVE_MAPS" value="24" enum="Monitor">
|
198 |
| - Number of active navigation maps in the [NavigationServer3D]. This also includes the two empty default navigation maps created by World2D and World3D. |
| 198 | + Number of active navigation maps in [NavigationServer2D] and [NavigationServer3D]. This also includes the two empty default navigation maps created by World2D and World3D. |
199 | 199 | </constant>
|
200 | 200 | <constant name="NAVIGATION_REGION_COUNT" value="25" enum="Monitor">
|
201 |
| - Number of active navigation regions in the [NavigationServer3D]. |
| 201 | + Number of active navigation regions in [NavigationServer2D] and [NavigationServer3D]. |
202 | 202 | </constant>
|
203 | 203 | <constant name="NAVIGATION_AGENT_COUNT" value="26" enum="Monitor">
|
204 |
| - Number of active navigation agents processing avoidance in the [NavigationServer3D]. |
| 204 | + Number of active navigation agents processing avoidance in [NavigationServer2D] and [NavigationServer3D]. |
205 | 205 | </constant>
|
206 | 206 | <constant name="NAVIGATION_LINK_COUNT" value="27" enum="Monitor">
|
207 |
| - Number of active navigation links in the [NavigationServer3D]. |
| 207 | + Number of active navigation links in [NavigationServer2D] and [NavigationServer3D]. |
208 | 208 | </constant>
|
209 | 209 | <constant name="NAVIGATION_POLYGON_COUNT" value="28" enum="Monitor">
|
210 |
| - Number of navigation mesh polygons in the [NavigationServer3D]. |
| 210 | + Number of navigation mesh polygons in [NavigationServer2D] and [NavigationServer3D]. |
211 | 211 | </constant>
|
212 | 212 | <constant name="NAVIGATION_EDGE_COUNT" value="29" enum="Monitor">
|
213 |
| - Number of navigation mesh polygon edges in the [NavigationServer3D]. |
| 213 | + Number of navigation mesh polygon edges in [NavigationServer2D] and [NavigationServer3D]. |
214 | 214 | </constant>
|
215 | 215 | <constant name="NAVIGATION_EDGE_MERGE_COUNT" value="30" enum="Monitor">
|
216 |
| - Number of navigation mesh polygon edges that were merged due to edge key overlap in the [NavigationServer3D]. |
| 216 | + Number of navigation mesh polygon edges that were merged due to edge key overlap in [NavigationServer2D] and [NavigationServer3D]. |
217 | 217 | </constant>
|
218 | 218 | <constant name="NAVIGATION_EDGE_CONNECTION_COUNT" value="31" enum="Monitor">
|
219 |
| - Number of polygon edges that are considered connected by edge proximity [NavigationServer3D]. |
| 219 | + Number of polygon edges that are considered connected by edge proximity [NavigationServer2D] and [NavigationServer3D]. |
220 | 220 | </constant>
|
221 | 221 | <constant name="NAVIGATION_EDGE_FREE_COUNT" value="32" enum="Monitor">
|
222 |
| - Number of navigation mesh polygon edges that could not be merged in the [NavigationServer3D]. The edges still may be connected by edge proximity or with links. |
| 222 | + Number of navigation mesh polygon edges that could not be merged in [NavigationServer2D] and [NavigationServer3D]. The edges still may be connected by edge proximity or with links. |
223 | 223 | </constant>
|
224 | 224 | <constant name="NAVIGATION_OBSTACLE_COUNT" value="33" enum="Monitor">
|
225 |
| - Number of active navigation obstacles in the [NavigationServer3D]. |
| 225 | + Number of active navigation obstacles in the [NavigationServer2D] and [NavigationServer3D]. |
226 | 226 | </constant>
|
227 | 227 | <constant name="PIPELINE_COMPILATIONS_CANVAS" value="34" enum="Monitor">
|
228 | 228 | Number of pipeline compilations that were triggered by the 2D canvas renderer.
|
|
239 | 239 | <constant name="PIPELINE_COMPILATIONS_SPECIALIZATION" value="38" enum="Monitor">
|
240 | 240 | Number of pipeline compilations that were triggered to optimize the current scene. These compilations are done in the background and should not cause any stutters whatsoever.
|
241 | 241 | </constant>
|
242 |
| - <constant name="MONITOR_MAX" value="39" enum="Monitor"> |
| 242 | + <constant name="NAVIGATION_2D_ACTIVE_MAPS" value="39" enum="Monitor"> |
| 243 | + Number of active navigation maps in the [NavigationServer2D]. This also includes the two empty default navigation maps created by World2D. |
| 244 | + </constant> |
| 245 | + <constant name="NAVIGATION_2D_REGION_COUNT" value="40" enum="Monitor"> |
| 246 | + Number of active navigation regions in the [NavigationServer2D]. |
| 247 | + </constant> |
| 248 | + <constant name="NAVIGATION_2D_AGENT_COUNT" value="41" enum="Monitor"> |
| 249 | + Number of active navigation agents processing avoidance in the [NavigationServer2D]. |
| 250 | + </constant> |
| 251 | + <constant name="NAVIGATION_2D_LINK_COUNT" value="42" enum="Monitor"> |
| 252 | + Number of active navigation links in the [NavigationServer2D]. |
| 253 | + </constant> |
| 254 | + <constant name="NAVIGATION_2D_POLYGON_COUNT" value="43" enum="Monitor"> |
| 255 | + Number of navigation mesh polygons in the [NavigationServer2D]. |
| 256 | + </constant> |
| 257 | + <constant name="NAVIGATION_2D_EDGE_COUNT" value="44" enum="Monitor"> |
| 258 | + Number of navigation mesh polygon edges in the [NavigationServer2D]. |
| 259 | + </constant> |
| 260 | + <constant name="NAVIGATION_2D_EDGE_MERGE_COUNT" value="45" enum="Monitor"> |
| 261 | + Number of navigation mesh polygon edges that were merged due to edge key overlap in the [NavigationServer2D]. |
| 262 | + </constant> |
| 263 | + <constant name="NAVIGATION_2D_EDGE_CONNECTION_COUNT" value="46" enum="Monitor"> |
| 264 | + Number of polygon edges that are considered connected by edge proximity [NavigationServer2D]. |
| 265 | + </constant> |
| 266 | + <constant name="NAVIGATION_2D_EDGE_FREE_COUNT" value="47" enum="Monitor"> |
| 267 | + Number of navigation mesh polygon edges that could not be merged in the [NavigationServer2D]. The edges still may be connected by edge proximity or with links. |
| 268 | + </constant> |
| 269 | + <constant name="NAVIGATION_2D_OBSTACLE_COUNT" value="48" enum="Monitor"> |
| 270 | + Number of active navigation obstacles in the [NavigationServer2D]. |
| 271 | + </constant> |
| 272 | + <constant name="NAVIGATION_3D_ACTIVE_MAPS" value="49" enum="Monitor"> |
| 273 | + Number of active navigation maps in the [NavigationServer3D]. This also includes the two empty default navigation maps created by World3D. |
| 274 | + </constant> |
| 275 | + <constant name="NAVIGATION_3D_REGION_COUNT" value="50" enum="Monitor"> |
| 276 | + Number of active navigation regions in the [NavigationServer3D]. |
| 277 | + </constant> |
| 278 | + <constant name="NAVIGATION_3D_AGENT_COUNT" value="51" enum="Monitor"> |
| 279 | + Number of active navigation agents processing avoidance in the [NavigationServer3D]. |
| 280 | + </constant> |
| 281 | + <constant name="NAVIGATION_3D_LINK_COUNT" value="52" enum="Monitor"> |
| 282 | + Number of active navigation links in the [NavigationServer3D]. |
| 283 | + </constant> |
| 284 | + <constant name="NAVIGATION_3D_POLYGON_COUNT" value="53" enum="Monitor"> |
| 285 | + Number of navigation mesh polygons in the [NavigationServer3D]. |
| 286 | + </constant> |
| 287 | + <constant name="NAVIGATION_3D_EDGE_COUNT" value="54" enum="Monitor"> |
| 288 | + Number of navigation mesh polygon edges in the [NavigationServer3D]. |
| 289 | + </constant> |
| 290 | + <constant name="NAVIGATION_3D_EDGE_MERGE_COUNT" value="55" enum="Monitor"> |
| 291 | + Number of navigation mesh polygon edges that were merged due to edge key overlap in the [NavigationServer3D]. |
| 292 | + </constant> |
| 293 | + <constant name="NAVIGATION_3D_EDGE_CONNECTION_COUNT" value="56" enum="Monitor"> |
| 294 | + Number of polygon edges that are considered connected by edge proximity [NavigationServer3D]. |
| 295 | + </constant> |
| 296 | + <constant name="NAVIGATION_3D_EDGE_FREE_COUNT" value="57" enum="Monitor"> |
| 297 | + Number of navigation mesh polygon edges that could not be merged in the [NavigationServer3D]. The edges still may be connected by edge proximity or with links. |
| 298 | + </constant> |
| 299 | + <constant name="NAVIGATION_3D_OBSTACLE_COUNT" value="58" enum="Monitor"> |
| 300 | + Number of active navigation obstacles in the [NavigationServer3D]. |
| 301 | + </constant> |
| 302 | + <constant name="MONITOR_MAX" value="59" enum="Monitor"> |
243 | 303 | Represents the size of the [enum Monitor] enum.
|
244 | 304 | </constant>
|
245 | 305 | </constants>
|
|
0 commit comments