From 11926fc9dcadcb52f7d05aad71b0e14f8ce3db12 Mon Sep 17 00:00:00 2001 From: ulteq Date: Wed, 20 Dec 2017 21:31:16 +0100 Subject: [PATCH] Docs - Added ATragMX framework documentation (#5919) * Docs - Added ATragMX framework documentation * Explains how to add custom gun list entries via config classes * Docs - Fixed typos * Docs - Improved ATragMX framework layout * Docs - Improved ATragMX Framework description --- docs/wiki/framework/atragmx.md | 36 ++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 docs/wiki/framework/atragmx.md diff --git a/docs/wiki/framework/atragmx.md b/docs/wiki/framework/atragmx.md new file mode 100644 index 0000000000..9ab62fb17f --- /dev/null +++ b/docs/wiki/framework/atragmx.md @@ -0,0 +1,36 @@ +--- +layout: wiki +title: ATragMX Framework +description: Explains how to set-up custom gun list entries with the ATragMX. +group: framework +order: 5 +parent: wiki +mod: ace +version: + major: 3 + minor: 0 + patch: 0 +--- + +## 1. Configs Values + +You do not have to put the `ACE_ATragMX_Presets` class into a separate file. You can reuse `CfgAmmo.hpp` or `CfgWeapons.hpp`. + +
+
All values are in METRIC units!
+
+ +### 1.1 `ACE_ATragMX_Presets` + +```cpp +class ACE_ATragMX_Presets { + class yourTestPreset1 { + // Profile Name, Muzzle Velocity, Zero Range, Scope Base Angle, AirFriction, Bore Height, Scope Unit, Scope Click Unit, Scope Click Number, Maximum Elevation, Dialed Elevation, Dialed Windage, Mass, Bullet Diameter, Rifle Twist, BC, Drag Model, Atmosphere Model, Muzzle Velocity vs. Temperature Interpolation, C1 Ballistic Coefficient vs. Distance Interpolation + preset[] = {"testPreset1", 810, 100, 0.0679, -0.0010350, 3.81, 0, 2, 10, 120, 0, 0, 9.525, 7.82, 25.40, 0.393, 1, "ICAO", {{-15,0},{0,0},{10,0},{15,0},{25,0},{30,0},{35,0}}, {{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}}}; + }; + class yourTestPreset2 { + // Profile Name, Muzzle Velocity, Zero Range, Scope Base Angle, AirFriction, Bore Height, Scope Unit, Scope Click Unit, Scope Click Number, Maximum Elevation, Dialed Elevation, Dialed Windage, Mass, Bullet Diameter, Rifle Twist, BC, Drag Model, Atmosphere Model, Muzzle Velocity vs. Temperature Interpolation, C1 Ballistic Coefficient vs. Distance Interpolation + preset[] = {"testPreset2", 810, 100, 0.0679, -0.0010350, 3.81, 0, 2, 10, 120, 0, 0, 9.525, 7.82, 25.40, 0.393, 1, "ICAO", {{-15,0},{0,0},{10,0},{15,0},{25,0},{30,0},{35,0}}, {{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}}}; + }; +}; +```