|
|
(91 intermediate revisions by the same user not shown) |
Line 1: |
Line 1: |
| "==== access ===="
| | {{TOC|side}} |
| "Data type: SCALAR"
| | If you have ever wondered why you scenario is running so badly, performance profiling is the way to find it out. It allows you to find bottlenecks and slow code by capturing a "slow" frame. |
| "'''Description:'''<br/>TBD"
| | The captured data can then be viewed and analysed. |
| "'''Description:'''<br/>TBD"
| | |
| ""
| | == Getting the correct Version == |
| "==== scope ===="
| | Profiling is enabled in the following {{arma3}} versions |
| "Data type: SCALAR"
| | * arma3profiling_x64.exe - '''Part of the Performance Profiling Build''' |
| "'''Description:'''<br/>TBD"
| | * arma3diag_x64.exe - '''Part of the Development Build''' |
| "'''Description:'''<br/>TBD"
| | |
| ""
| | Read [[Arma_3: Steam Branches]] for a guide on how to access these branches. |
| "==== reversed ===="
| | |
| "Data type: SCALAR"
| | {{Feature|informative|It is recommended to use the '''Performance Profiling Build''' (arma3profiling_x64.exe) for performance profiling because: |
| "'''Description:'''<br/>TBD"
| | * Has tools that might not make it into development build |
| "'''Description:'''<br/>TBD"
| | * Has all the profiling related commands that ''arma3diag_x64.exe'' has |
| ""
| | * Its performance is closer to the default ''arma3_x64.exe''}} |
| "==== autocenter ===="
| | |
| "Data type: SCALAR"
| | == Frame Capturing == |
| "'''Description:'''<br/>TBD"
| | There are several commands that allow you to capture a frame. |
| "'''Description:'''<br/>TBD"
| | * [[diag_captureFrame]] |
| ""
| | * [[diag_captureSlowFrame]] |
| "==== animated ===="
| | * [[diag_logSlowFrame]] - not available in Arma 3 :( |
| "Data type: SCALAR"
| | * [[diag_captureFrameToFile]] |
| "'''Description:'''<br/>TBD"
| | In most cases you do not want to capture any or all frames, you just want to capture "slow" frames. A slow frame is a frame that takes longer than the average frame and slows down the game. |
| "'''Description:'''<br/>TBD"
| | |
| ""
| | == How to Use == |
| "==== shadow ===="
| | # Run a mission |
| "Data type: SCALAR"
| | # Execute a scripted command <sqf inline>diag_captureSlowFrame ["total", 0.3];</sqf> using any means ([[Arma 3: Debug Console|Debug Console]], mission radio trigger...) |
| "'''Description:'''<br/>TBD"
| | # Once a slow frame is detected, a window will open |
| "'''Description:'''<br/>TBD"
| | # In the window you will be able to browse a lot of performance-related data, which can be interesting |
| ""
| | # To export the gathered information for sharing with others: |
| "==== featureType ===="
| | ## Select Main Thread (if not selected yet) |
| "Data type: SCALAR"
| | ## Press the Copy button |
| "'''Description:'''<br/>TBD"
| | ## Open an external text editor |
| "'''Description:'''<br/>TBD"
| | ## Paste the text into a new file |
| ""
| | ## Save the file |
| "==== vehicleClass ===="
| | |
| "Data type: STRING"
| | == Capture Frame UI == |
| "'''Description:'''<br/>TBD"
| | [[File: arma3-capture frame ui overview.png]] |
| "'''Description:'''<br/>TBD"
| | |
| ""
| | # {{Wiki|TODO}} |
| "==== icon ===="
| | # {{Wiki|TODO}} |
| "Data type: STRING"
| | # {{Wiki|TODO}} |
| "'''Description:'''<br/>TBD"
| | # {{Wiki|TODO}} |
| "'''Description:'''<br/>TBD"
| | # {{Wiki|TODO}} |
| ""
| | # {{Wiki|TODO}} |
| "==== side ===="
| | # {{Wiki|TODO}} |
| "Data type: SCALAR"
| | # {{Wiki|TODO}} |
| "'''Description:'''<br/>TBD"
| | # {{Wiki|TODO}} |
| "'''Description:'''<br/>TBD"
| | |
| ""
| | == External Viewer == |
| "==== faction ===="
| | * chrome://tracing |
| "Data type: STRING"
| | * https://ui.perfetto.dev/ |
| "'''Description:'''<br/>TBD"
| | |
| "'''Description:'''<br/>TBD"
| | [[File:Performance_Profiling_04.png|thumb|diag_captureFrame sample output with custom subtree]] |
| ""
| | == Creating Your Own Subtree == |
| "==== displayName ===="
| | |
| "Data type: STRING"
| | When Profiling Per-Frame Eventhandlers (PFH), [[diag_captureFrame]] only shows one blob called siFEH that contains all PFH's so you can't see what part of that is caused by your PFH.<br> |
| "'''Description:'''<br/>TBD"
| | You can create your own subtree inside siFEH by wrapping your function call inside a [[isNil]] CODE statement like this:<br> |
| "'''Description:'''<br/>TBD"
| | Turn your old call which may look like this: |
| ""
| | <sqf> |
| "==== speechSingular ===="
| | addMissionEventHandler ["EachFrame", { |
| "Data type: ARRAY"
| | call myPFHFunction |
| "'''Description:'''<br/>TBD"
| | }]; |
| "'''Description:'''<br/>TBD"
| | </sqf> |
| ""
| | |
| "==== speechPlural ===="
| | Into something like this: |
| "Data type: ARRAY"
| | <sqf> |
| "'''Description:'''<br/>TBD"
| | addMissionEventHandler ["EachFrame", { |
| "'''Description:'''<br/>TBD"
| | isNil { call myPFHFunction } // isNil creates the subtree |
| ""
| | }]; |
| "==== maxDetectRange ===="
| | </sqf> |
| "Data type: SCALAR"
| | |
| "'''Description:'''<br/>TBD"
| | Now when you run [[diag_captureFrame]] inside of siPFH you will have a subtree called gsEva and behind that you can see the first line of code inside the isNil statement. |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== detectSkill ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== mineAlertIconRange ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== killFriendlyExpCoef ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== weaponSlots ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== camouflage ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== audible ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== accuracy ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== spotableDarkNightLightsOff ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== spotableNightLightsOff ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== spotableNightLightsOn ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== accuracyDarkNightLightsOff ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== accuracyNightLightsOff ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== accuracyNightLightsOn ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== attenuationEffectType ===="
| |
| "Data type: STRING"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== insideSoundCoef ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== outsideSoundFilter ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== occludeSoundsWhenIn ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== obstructSoundsWhenIn ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== obstructSoundLFRatio ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== occludeSoundLFRatio ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== unloadInCombat ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== antiRollbarForceCoef ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== antiRollbarForceLimit ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== antiRollbarSpeedMin ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== antiRollbarSpeedMax ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== slowSpeedForwardCoef ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== normalSpeedForwardCoef ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== epeImpulseDamageCoef ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== gunnerHasFlares ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== enableManualFire ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== sensitivity ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== sensitivityEar ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== picture ===="
| |
| "Data type: STRING"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== portrait ===="
| |
| "Data type: STRING"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== ghostPreview ===="
| |
| "Data type: STRING"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== simulation ===="
| |
| "Data type: STRING"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== destrType ===="
| |
| "Data type: STRING"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== armor ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== armorLights ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== armorStructural ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== crewVulnerable ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== damageResistance ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== crewCrashProtection ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== replaceDamaged ===="
| |
| "Data type: STRING"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== replaceDamagedLimit ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== replaceDamagedHitpoints ===="
| |
| "Data type: ARRAY"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== keepInEPESceneAfterDeath ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== fuelCapacity ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== fuelConsumptionRate ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== extCameraPosition ===="
| |
| "Data type: ARRAY"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== groupCameraPosition ===="
| |
| "Data type: ARRAY"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== extCameraParams ===="
| |
| "Data type: ARRAY"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== steerAheadSimul ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== steerAheadPlan ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== cameraSmoothSpeed ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== minFireTime ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== predictTurnSimul ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== predictTurnPlan ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== indirectHitEnemyCoefAI ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== indirectHitFriendlyCoefAI ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== indirectHitCivilianCoefAI ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== indirectHitUnknownCoefAI ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== precision ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== brakeDistance ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== formationX ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== formationZ ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== formationTime ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== alwaysTarget ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== irTarget ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== irScanRangeMin ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== irScanRangeMax ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== irScanToEyeFactor ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== irScanGround ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== laserTarget ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== laserScanner ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== nvTarget ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== nvScanner ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== artilleryTarget ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== artilleryScanner ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== canUseScanners ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== preferRoads ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== unitInfoType ===="
| |
| "Data type: STRING"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== unitInfoTypeLite ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== hideUnitInfo ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== nightVision ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== commanderCanSee ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== gunnerCanSee ===="
| |
| "Data type: STRING"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== driverCanSee ===="
| |
| "Data type: STRING"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== showCrewAim ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== radarType ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== maxSpeed ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== limitedSpeedCoef ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== secondaryExplosion ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== hasDriver ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== driverForceOptics ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== hideWeaponsDriver ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== hideWeaponsCargo ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== getInRadius ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== selectionClan ===="
| |
| "Data type: STRING"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== selectionDashboard ===="
| |
| "Data type: STRING"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== selectionShowDamage ===="
| |
| "Data type: STRING"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== selectionBackLights ===="
| |
| "Data type: STRING"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== memoryPointSupply ===="
| |
| "Data type: STRING"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== supplyRadius ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== enableGPS ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== enableWatch ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== enableRadio ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== lockDetectionSystem ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== incomingMissileDetectionSystem ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== headGforceLeaningFactor ===="
| |
| "Data type: ARRAY"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== usePreciseGetInAction ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== allowTabLock ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== showAllTargets ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== dustFrontLeftPos ===="
| |
| "Data type: STRING"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== dustFrontRightPos ===="
| |
| "Data type: STRING"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== dustBackLeftPos ===="
| |
| "Data type: STRING"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== dustBackRightPos ===="
| |
| "Data type: STRING"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== wheelCircumference ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== waterLeakiness ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== waterResistanceCoef ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== waterLinearDampingCoefX ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== waterLinearDampingCoefY ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== waterAngularDampingCoef ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== showNVGDriver ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== showNVGCommander ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== showNVGGunner ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== showNVGCargo ===="
| |
| "Data type: ARRAY"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== soundAttenuationCargo ===="
| |
| "Data type: ARRAY"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== countsForScoreboard ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== hullDamageCauseExplosion ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== diffuse ===="
| |
| "Data type: ARRAY"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== ambient ===="
| |
| "Data type: ARRAY"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== brightness ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== blinking ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== onlyInNvg ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== initAngleX ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== minAngleX ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== maxAngleX ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== initAngleY ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== minAngleY ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== maxAngleY ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== minAngleZ ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== maxAngleZ ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== rotZRadius ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== minFov ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== maxFov ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== initFov ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== minMoveX ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== maxMoveX ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== minMoveY ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== maxMoveY ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== minMoveZ ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== maxMoveZ ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== speedZoomMaxSpeed ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== speedZoomMaxFOV ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== showHeadPhones ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== transportSoldier ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== transportAmmo ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== transportMaxMagazines ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== transportMaxWeapons ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== transportMaxBackpacks ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== isbackpack ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==== transportFuel ===="
| |
| "Data type: SCALAR"
| |
| "'''Description:'''<br/>TBD"
| |
| "'''Description:'''<br/>TBD"
| |
| ""
| |
| "==
| |