mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Add version information to most wiki feature and framework pages (#4303)
* Update documentation guidelines * Add version info part 1 * Add version info part 2 * Add removed in version to frontmatter and tag testmissions as removed * Add version info part 3
This commit is contained in:
parent
45c0a56023
commit
1df3a73461
@ -9,28 +9,36 @@ layout: compress
|
||||
<div class="row">
|
||||
<div class="medium-8 small-12 columns">
|
||||
<span>
|
||||
{% if page.version.removed %}
|
||||
{% assign type = 'removed' %}
|
||||
{% assign typeCapital = 'Removed' %}
|
||||
{% else %}
|
||||
{% assign type = 'added' %}
|
||||
{% assign typeCapital = 'Added' %}
|
||||
{% endif %}
|
||||
|
||||
{% if page.mod == 'ace' %}
|
||||
|
||||
{% if page.version.major > site.ace.version.major %}
|
||||
<em>Will be added in ACE3 v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}}</em>
|
||||
<em>Will be {{type}} in ACE3 v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}}</em>
|
||||
{% elsif page.version.major == site.ace.version.major and page.version.minor > site.ace.version.minor %}
|
||||
<em>Will be added in ACE3 v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}}</em>
|
||||
<em>Will be {{type}} in ACE3 v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}}</em>
|
||||
{% elsif page.version.major == site.ace.version.major and page.version.minor == site.ace.version.minor and page.version.patch > site.ace.version.patch %}
|
||||
<em>Will be added in ACE3 v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}}</em>
|
||||
<em>Will be {{type}} in ACE3 v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}}</em>
|
||||
{% else %}
|
||||
<em>Added in ACE3 v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}}</em>
|
||||
<em>{{typeCapital}} in ACE3 v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}}</em>
|
||||
{% endif %}
|
||||
|
||||
{% elsif page.mod == 'acex' %}
|
||||
|
||||
{% if page.version.major > site.acex.version.major %}
|
||||
<em>Will be added in ACEX v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}}</em>
|
||||
<em>Will be {{type}} in ACEX v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}}</em>
|
||||
{% elsif page.version.major == site.acex.version.major and page.version.minor > site.acex.version.minor %}
|
||||
<em>Will be added in ACEX v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}}</em>
|
||||
<em>Will be {{type}} in ACEX v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}}</em>
|
||||
{% elsif page.version.major == site.acex.version.major and page.version.minor == site.acex.version.minor and page.version.patch > site.acex.version.patch %}
|
||||
<em>Will be added in ACEX v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}}</em>
|
||||
<em>Will be {{type}} in ACEX v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}}</em>
|
||||
{% else %}
|
||||
<em>Added in ACEX v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}}</em>
|
||||
<em>{{typeCapital}} in ACEX v{{page.version.major}}.{{page.version.minor}}.{{page.version.patch}}</em>
|
||||
{% endif %}
|
||||
|
||||
{% endif %}
|
||||
|
@ -6,47 +6,7 @@ parent: wiki
|
||||
order: 19
|
||||
---
|
||||
|
||||
# Documentation guidelines
|
||||
|
||||
## Example entry
|
||||
```
|
||||
---
|
||||
layout: wiki
|
||||
title: Mission Modules
|
||||
group: feature
|
||||
parent: wiki
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
||||
### 1.1 Sub-feature 1
|
||||
Short description of sub-feature 1.
|
||||
|
||||
### 1.2 Sub-feature 2
|
||||
Short description of sub-feature 2.
|
||||
|
||||
## 2. Usage
|
||||
|
||||
### 2.1 thing n°1
|
||||
|
||||
- Step 1.
|
||||
- Step 2.
|
||||
- Step 3.
|
||||
|
||||
### 2.2 thing n°2
|
||||
|
||||
- Step 1.
|
||||
- Step 2.
|
||||
- Step 3.
|
||||
|
||||
## 3. Dependencies
|
||||
|
||||
`ace_something`
|
||||
|
||||
## 4. Guides
|
||||
```
|
||||
|
||||
# Guidelines
|
||||
# 1. Documentation Guidelines
|
||||
|
||||
- A line between each entry like above.
|
||||
- This is especially necessary for the kramdown markup syntax. Kramdown needs a line break between each block level element (paragraphs, lists, codeblocks, etc ...)
|
||||
@ -58,7 +18,84 @@ Short description of sub-feature 2.
|
||||
- Capitals at the start of a sentence and `.`at the end.
|
||||
- Verify everything in game
|
||||
|
||||
# Tips
|
||||
## 1.1 Tips
|
||||
|
||||
- Use [http://dillinger.io/](http://dillinger.io/) to keep your sanity
|
||||
- [Markdown cheat sheet](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet)
|
||||
|
||||
## 1.2 Feature Template
|
||||
|
||||
```
|
||||
---
|
||||
layout: wiki
|
||||
title: Component
|
||||
description: Description of the feature.
|
||||
group: feature
|
||||
category: interaction
|
||||
parent: wiki
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
||||
### 1.1 Sub-feature 1
|
||||
|
||||
Short description of sub-feature 1.
|
||||
|
||||
### 1.2 Sub-feature 2
|
||||
|
||||
Short description of sub-feature 2.
|
||||
|
||||
## 2. Usage
|
||||
|
||||
### 2.1 Thing n°1
|
||||
|
||||
- Step 1.
|
||||
- Step 2.
|
||||
- Step 3.
|
||||
|
||||
### 2.2 Thing n°2
|
||||
|
||||
- Step 1.
|
||||
- Step 2.
|
||||
- Step 3.
|
||||
|
||||
## 3. Dependencies
|
||||
|
||||
{% include dependencies_list.md component="ace_something" %}
|
||||
|
||||
## 4. Guides
|
||||
|
||||
Information about other guides and pages about this feature.
|
||||
```
|
||||
|
||||
## 1.3 Framework Template
|
||||
|
||||
```
|
||||
---
|
||||
layout: wiki
|
||||
title: Component Framework
|
||||
description: Description of the framework.
|
||||
group: framework
|
||||
parent: wiki
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Config Values
|
||||
|
||||
Config API.
|
||||
|
||||
## 2. Events
|
||||
|
||||
Table of public events.
|
||||
|
||||
## 3. Scripting
|
||||
|
||||
Public functions.
|
||||
```
|
||||
|
@ -5,6 +5,11 @@ description: The advanced ballistics module improves internal and external balli
|
||||
group: feature
|
||||
category: realism
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: AI (Artificial Intelligence)
|
||||
description: Config based changes to AI to ensure compatibility with advanced AI modifications
|
||||
description: Config based changes to AI to ensure compatibility with advanced AI modifications.
|
||||
group: feature
|
||||
category: realism
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Aircraft
|
||||
description: Aircraft overhaul
|
||||
description: Aircraft overhaul.
|
||||
group: feature
|
||||
category: realism
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: APL
|
||||
description: assets under APL license
|
||||
description: Assets under APL license.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: ATragMX
|
||||
description:
|
||||
description: Handheld ballistics calculator.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Attach
|
||||
description: Allow players to attach items to vehicles or themselves
|
||||
description: Allow players to attach items to vehicles or themselves.
|
||||
group: feature
|
||||
category: interaction
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Backpacks
|
||||
description: Notifies a player when his backpack is opened
|
||||
description: Notifies a player when his backpack is opened.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Ballistics
|
||||
description: Realistic ballistic improvements
|
||||
description: Realistic ballistic improvements.
|
||||
group: feature
|
||||
category: realism
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Captives
|
||||
description: System for taking and handling captives
|
||||
description: System for taking and handling captives.
|
||||
group: feature
|
||||
category: interaction
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -5,6 +5,11 @@ description: Common functions and systems used by most other components.
|
||||
group: feature
|
||||
category: general
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Concertina Wire
|
||||
description:
|
||||
description: Deployable concertina wire.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,9 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Dagr
|
||||
description: Defense Advanced GPS Receiver.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Disarming
|
||||
description:
|
||||
description: Ability to make units drop items/weapons/magazines.
|
||||
group: feature
|
||||
category: interaction
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Disposable
|
||||
description: Makes NLAW disposable and allows addons to do the same
|
||||
description: Makes NLAW disposable.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Dragging
|
||||
description: Adds the option to drag and carry units and objects
|
||||
description: Adds the option to drag and carry units and objects.
|
||||
group: feature
|
||||
category: interaction
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Explosives
|
||||
description: Adds numerous improvements to using and handling explosives
|
||||
description: Adds numerous improvements to using and handling explosives.
|
||||
group: feature
|
||||
category: interaction
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -5,6 +5,11 @@ description: System for adding fast roping capabilities to helicopters.
|
||||
group: feature
|
||||
category: realism
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 5
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: FCS (Fire Control System)
|
||||
description:
|
||||
description: Fire control system for armoured vehicles and helicopters.
|
||||
category: equipment
|
||||
group: feature
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Finger
|
||||
description: Finger pointing
|
||||
description: Finger pointing.
|
||||
group: feature
|
||||
category: realism
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 2
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Flashlights
|
||||
description: Adds handheld flashlights
|
||||
description: Adds handheld flashlights.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 3
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Flash Suppressors
|
||||
description:
|
||||
description: Makes flash suppressors from game files able to be used.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -5,6 +5,11 @@ description: Custom fonts including fixed-width font.
|
||||
group: feature
|
||||
category: general
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Frag
|
||||
description:
|
||||
description: Shapnel system for explosives.
|
||||
group: feature
|
||||
category: realism
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: G-Forces
|
||||
description:
|
||||
description: G-force induced tunnel vision and unconsciousness.
|
||||
group: feature
|
||||
category: realism
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Goggles
|
||||
description:
|
||||
description: Various effects for different goggles and ambient effects like dirt thrown up by explosions.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Grenades
|
||||
description:
|
||||
description: Different throwing modes for grenades, a flashbang and hand flares.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Hearing
|
||||
description:
|
||||
description: Combat deafness and ringing.
|
||||
group: feature
|
||||
category: realism
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Hit Reactions
|
||||
description:
|
||||
description: Reactions when getting shot.
|
||||
group: feature
|
||||
category: realism
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -5,6 +5,11 @@ description: High-altitude Unit Navigated Tactical Imaging Round
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 1
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Interact Menu
|
||||
description:
|
||||
description: Base framework for interaction menu.
|
||||
group: feature
|
||||
category: interaction
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Interaction
|
||||
description:
|
||||
description: Provides basic interaction options.
|
||||
group: feature
|
||||
category: interaction
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Inventory
|
||||
description:
|
||||
description: Options to increase size of the inventory dialog.
|
||||
group: feature
|
||||
category: interaction
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Javelin
|
||||
description:
|
||||
description: Javelin AT launcher and locking.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Kestrel 4500
|
||||
description:
|
||||
description: Kestrel 4500 Pocket Weather Tracker.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Laser Self-Designate
|
||||
description:
|
||||
description: Allows gunners to lase their own targets.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Laser
|
||||
description:
|
||||
description: Various functions necessary for realistic portrayal of laser mechanics in other components.
|
||||
group: feature
|
||||
category: realism
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Laser Pointer
|
||||
description: Switching laser modes, daylight lasers
|
||||
description: Switching laser modes, daylight lasers.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Logistics - UAV Battery
|
||||
description: UAV recharging
|
||||
description: UAV recharging.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Logistics - Wirecutter
|
||||
description:
|
||||
description: Cutting fences, wirecutter.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -5,6 +5,11 @@ description: Repacking magazines, and maybe your bananas.
|
||||
group: feature
|
||||
category: realism
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Main
|
||||
description: main module
|
||||
description: Main module.
|
||||
group: feature
|
||||
category: general
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Map
|
||||
description: Map improvements
|
||||
description: Map improvements.
|
||||
group: feature
|
||||
category: realism
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Map Tools
|
||||
description: Map tools, a roamer and pens
|
||||
description: Map tools, a roamer and pens.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Markers
|
||||
description: improved markers
|
||||
description: Improved markers.
|
||||
group: feature
|
||||
category: interaction
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -6,6 +6,11 @@ group: feature
|
||||
order: 4
|
||||
category: realism
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
**Disclaimer:** With the documentation for the medical system being extremely long it's highly advised to use the table of contents at the top right corner of the page.
|
||||
|
||||
|
@ -5,6 +5,11 @@ description: Adds the medical menu.
|
||||
group: feature
|
||||
category: realism
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 3
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: MicroDAGR
|
||||
description: A GPS device and much more
|
||||
description: A GPS device and much more.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
For an easier time reading don't forget that you can view all chapters on the right side of the page by clicking on Show/hide under table of content.
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Missile Guidance
|
||||
description:
|
||||
description: Various modes for different missiles.
|
||||
group: feature
|
||||
category: realism
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Mission Modules
|
||||
description: modules that can be used by mission makers.
|
||||
description: Modules that can be used by mission makers.
|
||||
group: feature
|
||||
category: general
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -5,6 +5,11 @@ description: Improve the existing Mk6 Mortar.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,9 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Modules
|
||||
description: Framework for module handling.
|
||||
group: feature
|
||||
category: general
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Movement
|
||||
description: Movement improvements
|
||||
description: Movement improvements.
|
||||
group: feature
|
||||
category: realism
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: MX-2A
|
||||
description: Movement improvements
|
||||
description: MX-2A thermal imaging device.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 1
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Nametags
|
||||
description:
|
||||
description: Name tags above other players.
|
||||
group: feature
|
||||
category: interaction
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Nightvision
|
||||
description:
|
||||
description: Different types of NVGs with different levels of quality.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: No Idle
|
||||
description: Disables idle animations
|
||||
description: Disable idle animations.
|
||||
group: feature
|
||||
category: interaction
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: No Radio
|
||||
description: Disable callouts
|
||||
description: Disable callouts.
|
||||
group: feature
|
||||
category: interaction
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: No Rearm
|
||||
description: Remove rearm from
|
||||
description: Remove rearm action.
|
||||
group: feature
|
||||
category: interaction
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Optics
|
||||
description: 2D and PIP optics
|
||||
description: Animated 2D and PiP optics.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Options Menu
|
||||
description: ACE3 options menu
|
||||
description: ACE3 options menu.
|
||||
group: feature
|
||||
category: interaction
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -5,6 +5,11 @@ description: Weapon temperature and jamming, barrel swapping.
|
||||
group: feature
|
||||
category: realism
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Overpressure
|
||||
description: backblast and overpressure
|
||||
description: Backblast and overpressure.
|
||||
group: feature
|
||||
category: realism
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Parachute
|
||||
description: Add an altimeter and a non-steerable parachute
|
||||
description: Add an altimeter and a non-steerable parachute.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Rangecard
|
||||
description: Adds a range card for your weapons
|
||||
description: Adds a range card for your weapons.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 1
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Realistic Names
|
||||
description: More realistic weapon names
|
||||
description: More realistic weapon names.
|
||||
group: feature
|
||||
category: realism
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -5,6 +5,11 @@ description: Adds custom rearm system.
|
||||
group: feature
|
||||
category: interaction
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 4
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Recoil
|
||||
description: Recoil overhaul
|
||||
description: Recoil overhaul.
|
||||
group: feature
|
||||
category: realism
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Refuel
|
||||
description: Adds the option to refuel vehicles
|
||||
description: Adds the option to refuel vehicles.
|
||||
group: feature
|
||||
category: interaction
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 4
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Reload
|
||||
description:
|
||||
description: Hides default reload indicator, making it necessary to manually check the magazine.
|
||||
group: feature
|
||||
category: interaction
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Reload Launchers
|
||||
description:
|
||||
description: Ability to reload someone else's launcher.
|
||||
group: feature
|
||||
category: interaction
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Respawn
|
||||
description: Same gear on respawn, FF message, rallypoints
|
||||
description: Same gear on respawn, friendly fire message, rally points.
|
||||
group: feature
|
||||
category: interaction
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Safe Mode
|
||||
description: Introduce safe mode
|
||||
description: Ability to use safe mode on small arms.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Sandbags
|
||||
description: Adds stackable sandbags
|
||||
description: Adds stackable sandbags.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 1
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Scopes
|
||||
description: Scope adjustment
|
||||
description: Scope adjustment.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,12 +1,22 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Sitting
|
||||
description:
|
||||
description: Ability to sit on chairs.
|
||||
group: feature
|
||||
category: interaction
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 2
|
||||
patch: 0
|
||||
---
|
||||
|
||||
<div class="panel callout">
|
||||
<h5>Note:</h5>
|
||||
<p>ACE3 Sitting has been deprecated in favour of ACEX Sitting and will be removed in a future version.</p>
|
||||
</div>
|
||||
|
||||
## 1. Overview
|
||||
Adds the ability to sit on chairs.
|
||||
|
||||
|
@ -1,9 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Slideshow
|
||||
description: Ability to have automatic or controllable slide-shows.
|
||||
group: feature
|
||||
category: interaction
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 2
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Small Arms
|
||||
description: Various improvements to small arms
|
||||
description: Various improvements to small arms.
|
||||
group: feature
|
||||
category: realism
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Spectator
|
||||
description: A flexible spectator system
|
||||
description: A flexible spectator system.
|
||||
group: feature
|
||||
category: interaction
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 2
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Spotting scope
|
||||
description: Adds a deployable spotting scope
|
||||
description: Adds a deployable spotting scope.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 1
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Switch Units
|
||||
description:
|
||||
description: Insurgency-style unit switching.
|
||||
group: feature
|
||||
category: interaction
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -5,6 +5,11 @@ description: Adds a deployable ladder with adjustable height that you can transp
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 1
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,16 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Test Missions
|
||||
description: Adds an ACE3 Test Missions
|
||||
description: Adds ACE3 Test Missions.
|
||||
group: feature
|
||||
category: general
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 6
|
||||
patch: 0
|
||||
removed: true
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Thermals
|
||||
description:
|
||||
description: Improves thermal properties.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Tripod
|
||||
description: Adds a packable tripod deployable on the field
|
||||
description: Adds a packable tripod deployable on the field.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 1
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -5,6 +5,11 @@ description: Selective User Interface framework and other tweaks.
|
||||
group: feature
|
||||
category: general
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 1
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Vector
|
||||
description: Adds a realistic depiction of the Vector 21 rangefinder
|
||||
description: Adds a realistic depiction of the Vector 21 rangefinder.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Vehicle Lock
|
||||
description: The vehicle lock module enables locking vehicles and their inventory
|
||||
description: The vehicle lock module enables locking vehicles and their inventory.
|
||||
group: feature
|
||||
category: interaction
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Vehicles
|
||||
description:
|
||||
description: Various tweaks to vehicles and vehicle weapons.
|
||||
group: feature
|
||||
category: realism
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -5,6 +5,11 @@ description: The view distance module adds extra view distance settings
|
||||
group: feature
|
||||
category: interaction
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 1
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Weapon Select
|
||||
description:
|
||||
description: Ability to quickly select weapons using the number keys.
|
||||
group: feature
|
||||
category: interaction
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Weather
|
||||
description: The Weather module overrides the mission/editor weather setting with a synchronized realistic weather simulation
|
||||
description: The Weather module overrides the mission/editor weather setting with a synchronized realistic weather simulation.
|
||||
group: feature
|
||||
category: realism
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Wind Deflection
|
||||
description: The wind deflection module simulates wind deflection of projectiles
|
||||
description: The wind deflection module simulates wind deflection of projectiles.
|
||||
group: feature
|
||||
category: realism
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
redirect_from: "/wiki/feature/windeflection.html"
|
||||
---
|
||||
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Yardage 450
|
||||
description: Adds the Bushnell Yardage Pro Sport 450 Laser Rangefinder
|
||||
description: Adds the Bushnell Yardage Pro Sport 450 Laser Rangefinder.
|
||||
group: feature
|
||||
category: equipment
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 1
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -1,10 +1,15 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Zeus
|
||||
description: The Zeus module improves the Vanilla functionality
|
||||
description: The Zeus module improves the Vanilla functionality.
|
||||
group: feature
|
||||
category: interaction
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 1
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
@ -5,6 +5,11 @@ description: Explains how to set-up the cargo framework for custom objects and v
|
||||
group: framework
|
||||
order: 5
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 3
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Config Values
|
||||
|
@ -5,6 +5,11 @@ description: Explains how to set-up custom disposable launchers with the ACE3 di
|
||||
group: framework
|
||||
order: 5
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
<div class="panel callout">
|
||||
|
@ -5,6 +5,11 @@ description: Explains how to set-up dragging and carrying of objects with the AC
|
||||
group: framework
|
||||
order: 5
|
||||
parent: wiki
|
||||
mod: ace
|
||||
version:
|
||||
major: 3
|
||||
minor: 0
|
||||
patch: 0
|
||||
---
|
||||
|
||||
## 1. Config Values
|
||||
|
@ -1,7 +1,7 @@
|
||||
---
|
||||
layout: wiki
|
||||
title: Events Framework
|
||||
description: Explains how to use ACE3 event handlers used to trigger or allow triggering of specific functionality and lists all documented events.
|
||||
description: Explains how to use CBA event handlers with ACE3 events used to trigger or allow triggering of specific functionality and lists all documented events.
|
||||
group: framework
|
||||
order: 5
|
||||
parent: wiki
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user