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="row">
|
||||||
<div class="medium-8 small-12 columns">
|
<div class="medium-8 small-12 columns">
|
||||||
<span>
|
<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.mod == 'ace' %}
|
||||||
|
|
||||||
{% if page.version.major > site.ace.version.major %}
|
{% 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 %}
|
{% 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 %}
|
{% 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 %}
|
{% 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 %}
|
{% endif %}
|
||||||
|
|
||||||
{% elsif page.mod == 'acex' %}
|
{% elsif page.mod == 'acex' %}
|
||||||
|
|
||||||
{% if page.version.major > site.acex.version.major %}
|
{% 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 %}
|
{% 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 %}
|
{% 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 %}
|
{% 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 %}
|
||||||
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -6,47 +6,7 @@ parent: wiki
|
|||||||
order: 19
|
order: 19
|
||||||
---
|
---
|
||||||
|
|
||||||
# Documentation guidelines
|
# 1. 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
|
|
||||||
|
|
||||||
- A line between each entry like above.
|
- 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 ...)
|
- 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.
|
- Capitals at the start of a sentence and `.`at the end.
|
||||||
- Verify everything in game
|
- Verify everything in game
|
||||||
|
|
||||||
# Tips
|
## 1.1 Tips
|
||||||
|
|
||||||
- Use [http://dillinger.io/](http://dillinger.io/) to keep your sanity
|
- Use [http://dillinger.io/](http://dillinger.io/) to keep your sanity
|
||||||
- [Markdown cheat sheet](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet)
|
- [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
|
group: feature
|
||||||
category: realism
|
category: realism
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: AI (Artificial Intelligence)
|
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
|
group: feature
|
||||||
category: realism
|
category: realism
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Aircraft
|
title: Aircraft
|
||||||
description: Aircraft overhaul
|
description: Aircraft overhaul.
|
||||||
group: feature
|
group: feature
|
||||||
category: realism
|
category: realism
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: APL
|
title: APL
|
||||||
description: assets under APL license
|
description: Assets under APL license.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: ATragMX
|
title: ATragMX
|
||||||
description:
|
description: Handheld ballistics calculator.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Attach
|
title: Attach
|
||||||
description: Allow players to attach items to vehicles or themselves
|
description: Allow players to attach items to vehicles or themselves.
|
||||||
group: feature
|
group: feature
|
||||||
category: interaction
|
category: interaction
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Backpacks
|
title: Backpacks
|
||||||
description: Notifies a player when his backpack is opened
|
description: Notifies a player when his backpack is opened.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Ballistics
|
title: Ballistics
|
||||||
description: Realistic ballistic improvements
|
description: Realistic ballistic improvements.
|
||||||
group: feature
|
group: feature
|
||||||
category: realism
|
category: realism
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Captives
|
title: Captives
|
||||||
description: System for taking and handling captives
|
description: System for taking and handling captives.
|
||||||
group: feature
|
group: feature
|
||||||
category: interaction
|
category: interaction
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -5,6 +5,11 @@ description: Common functions and systems used by most other components.
|
|||||||
group: feature
|
group: feature
|
||||||
category: general
|
category: general
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Concertina Wire
|
title: Concertina Wire
|
||||||
description:
|
description: Deployable concertina wire.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,9 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Dagr
|
title: Dagr
|
||||||
|
description: Defense Advanced GPS Receiver.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Disarming
|
title: Disarming
|
||||||
description:
|
description: Ability to make units drop items/weapons/magazines.
|
||||||
group: feature
|
group: feature
|
||||||
category: interaction
|
category: interaction
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Disposable
|
title: Disposable
|
||||||
description: Makes NLAW disposable and allows addons to do the same
|
description: Makes NLAW disposable.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Dragging
|
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
|
group: feature
|
||||||
category: interaction
|
category: interaction
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Explosives
|
title: Explosives
|
||||||
description: Adds numerous improvements to using and handling explosives
|
description: Adds numerous improvements to using and handling explosives.
|
||||||
group: feature
|
group: feature
|
||||||
category: interaction
|
category: interaction
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -5,6 +5,11 @@ description: System for adding fast roping capabilities to helicopters.
|
|||||||
group: feature
|
group: feature
|
||||||
category: realism
|
category: realism
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 5
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: FCS (Fire Control System)
|
title: FCS (Fire Control System)
|
||||||
description:
|
description: Fire control system for armoured vehicles and helicopters.
|
||||||
category: equipment
|
category: equipment
|
||||||
group: feature
|
group: feature
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Finger
|
title: Finger
|
||||||
description: Finger pointing
|
description: Finger pointing.
|
||||||
group: feature
|
group: feature
|
||||||
category: realism
|
category: realism
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 2
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Flashlights
|
title: Flashlights
|
||||||
description: Adds handheld flashlights
|
description: Adds handheld flashlights.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 3
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Flash Suppressors
|
title: Flash Suppressors
|
||||||
description:
|
description: Makes flash suppressors from game files able to be used.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -5,6 +5,11 @@ description: Custom fonts including fixed-width font.
|
|||||||
group: feature
|
group: feature
|
||||||
category: general
|
category: general
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Frag
|
title: Frag
|
||||||
description:
|
description: Shapnel system for explosives.
|
||||||
group: feature
|
group: feature
|
||||||
category: realism
|
category: realism
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: G-Forces
|
title: G-Forces
|
||||||
description:
|
description: G-force induced tunnel vision and unconsciousness.
|
||||||
group: feature
|
group: feature
|
||||||
category: realism
|
category: realism
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Goggles
|
title: Goggles
|
||||||
description:
|
description: Various effects for different goggles and ambient effects like dirt thrown up by explosions.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Grenades
|
title: Grenades
|
||||||
description:
|
description: Different throwing modes for grenades, a flashbang and hand flares.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Hearing
|
title: Hearing
|
||||||
description:
|
description: Combat deafness and ringing.
|
||||||
group: feature
|
group: feature
|
||||||
category: realism
|
category: realism
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Hit Reactions
|
title: Hit Reactions
|
||||||
description:
|
description: Reactions when getting shot.
|
||||||
group: feature
|
group: feature
|
||||||
category: realism
|
category: realism
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -5,6 +5,11 @@ description: High-altitude Unit Navigated Tactical Imaging Round
|
|||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 1
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Interact Menu
|
title: Interact Menu
|
||||||
description:
|
description: Base framework for interaction menu.
|
||||||
group: feature
|
group: feature
|
||||||
category: interaction
|
category: interaction
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Interaction
|
title: Interaction
|
||||||
description:
|
description: Provides basic interaction options.
|
||||||
group: feature
|
group: feature
|
||||||
category: interaction
|
category: interaction
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Inventory
|
title: Inventory
|
||||||
description:
|
description: Options to increase size of the inventory dialog.
|
||||||
group: feature
|
group: feature
|
||||||
category: interaction
|
category: interaction
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Javelin
|
title: Javelin
|
||||||
description:
|
description: Javelin AT launcher and locking.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Kestrel 4500
|
title: Kestrel 4500
|
||||||
description:
|
description: Kestrel 4500 Pocket Weather Tracker.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Laser Self-Designate
|
title: Laser Self-Designate
|
||||||
description:
|
description: Allows gunners to lase their own targets.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Laser
|
title: Laser
|
||||||
description:
|
description: Various functions necessary for realistic portrayal of laser mechanics in other components.
|
||||||
group: feature
|
group: feature
|
||||||
category: realism
|
category: realism
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Laser Pointer
|
title: Laser Pointer
|
||||||
description: Switching laser modes, daylight lasers
|
description: Switching laser modes, daylight lasers.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Logistics - UAV Battery
|
title: Logistics - UAV Battery
|
||||||
description: UAV recharging
|
description: UAV recharging.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Logistics - Wirecutter
|
title: Logistics - Wirecutter
|
||||||
description:
|
description: Cutting fences, wirecutter.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -5,6 +5,11 @@ description: Repacking magazines, and maybe your bananas.
|
|||||||
group: feature
|
group: feature
|
||||||
category: realism
|
category: realism
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Main
|
title: Main
|
||||||
description: main module
|
description: Main module.
|
||||||
group: feature
|
group: feature
|
||||||
category: general
|
category: general
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Map
|
title: Map
|
||||||
description: Map improvements
|
description: Map improvements.
|
||||||
group: feature
|
group: feature
|
||||||
category: realism
|
category: realism
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Map Tools
|
title: Map Tools
|
||||||
description: Map tools, a roamer and pens
|
description: Map tools, a roamer and pens.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Markers
|
title: Markers
|
||||||
description: improved markers
|
description: Improved markers.
|
||||||
group: feature
|
group: feature
|
||||||
category: interaction
|
category: interaction
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -6,6 +6,11 @@ group: feature
|
|||||||
order: 4
|
order: 4
|
||||||
category: realism
|
category: realism
|
||||||
parent: wiki
|
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.
|
**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
|
group: feature
|
||||||
category: realism
|
category: realism
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 3
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: MicroDAGR
|
title: MicroDAGR
|
||||||
description: A GPS device and much more
|
description: A GPS device and much more.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
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.
|
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
|
layout: wiki
|
||||||
title: Missile Guidance
|
title: Missile Guidance
|
||||||
description:
|
description: Various modes for different missiles.
|
||||||
group: feature
|
group: feature
|
||||||
category: realism
|
category: realism
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Mission Modules
|
title: Mission Modules
|
||||||
description: modules that can be used by mission makers.
|
description: Modules that can be used by mission makers.
|
||||||
group: feature
|
group: feature
|
||||||
category: general
|
category: general
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -5,6 +5,11 @@ description: Improve the existing Mk6 Mortar.
|
|||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,9 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Modules
|
title: Modules
|
||||||
|
description: Framework for module handling.
|
||||||
group: feature
|
group: feature
|
||||||
category: general
|
category: general
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Movement
|
title: Movement
|
||||||
description: Movement improvements
|
description: Movement improvements.
|
||||||
group: feature
|
group: feature
|
||||||
category: realism
|
category: realism
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: MX-2A
|
title: MX-2A
|
||||||
description: Movement improvements
|
description: MX-2A thermal imaging device.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 1
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Nametags
|
title: Nametags
|
||||||
description:
|
description: Name tags above other players.
|
||||||
group: feature
|
group: feature
|
||||||
category: interaction
|
category: interaction
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Nightvision
|
title: Nightvision
|
||||||
description:
|
description: Different types of NVGs with different levels of quality.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: No Idle
|
title: No Idle
|
||||||
description: Disables idle animations
|
description: Disable idle animations.
|
||||||
group: feature
|
group: feature
|
||||||
category: interaction
|
category: interaction
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: No Radio
|
title: No Radio
|
||||||
description: Disable callouts
|
description: Disable callouts.
|
||||||
group: feature
|
group: feature
|
||||||
category: interaction
|
category: interaction
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: No Rearm
|
title: No Rearm
|
||||||
description: Remove rearm from
|
description: Remove rearm action.
|
||||||
group: feature
|
group: feature
|
||||||
category: interaction
|
category: interaction
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Optics
|
title: Optics
|
||||||
description: 2D and PIP optics
|
description: Animated 2D and PiP optics.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Options Menu
|
title: Options Menu
|
||||||
description: ACE3 options menu
|
description: ACE3 options menu.
|
||||||
group: feature
|
group: feature
|
||||||
category: interaction
|
category: interaction
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -5,6 +5,11 @@ description: Weapon temperature and jamming, barrel swapping.
|
|||||||
group: feature
|
group: feature
|
||||||
category: realism
|
category: realism
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Overpressure
|
title: Overpressure
|
||||||
description: backblast and overpressure
|
description: Backblast and overpressure.
|
||||||
group: feature
|
group: feature
|
||||||
category: realism
|
category: realism
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Parachute
|
title: Parachute
|
||||||
description: Add an altimeter and a non-steerable parachute
|
description: Add an altimeter and a non-steerable parachute.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Rangecard
|
title: Rangecard
|
||||||
description: Adds a range card for your weapons
|
description: Adds a range card for your weapons.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 1
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Realistic Names
|
title: Realistic Names
|
||||||
description: More realistic weapon names
|
description: More realistic weapon names.
|
||||||
group: feature
|
group: feature
|
||||||
category: realism
|
category: realism
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -5,6 +5,11 @@ description: Adds custom rearm system.
|
|||||||
group: feature
|
group: feature
|
||||||
category: interaction
|
category: interaction
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 4
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Recoil
|
title: Recoil
|
||||||
description: Recoil overhaul
|
description: Recoil overhaul.
|
||||||
group: feature
|
group: feature
|
||||||
category: realism
|
category: realism
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Refuel
|
title: Refuel
|
||||||
description: Adds the option to refuel vehicles
|
description: Adds the option to refuel vehicles.
|
||||||
group: feature
|
group: feature
|
||||||
category: interaction
|
category: interaction
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 4
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Reload
|
title: Reload
|
||||||
description:
|
description: Hides default reload indicator, making it necessary to manually check the magazine.
|
||||||
group: feature
|
group: feature
|
||||||
category: interaction
|
category: interaction
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Reload Launchers
|
title: Reload Launchers
|
||||||
description:
|
description: Ability to reload someone else's launcher.
|
||||||
group: feature
|
group: feature
|
||||||
category: interaction
|
category: interaction
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Respawn
|
title: Respawn
|
||||||
description: Same gear on respawn, FF message, rallypoints
|
description: Same gear on respawn, friendly fire message, rally points.
|
||||||
group: feature
|
group: feature
|
||||||
category: interaction
|
category: interaction
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Safe Mode
|
title: Safe Mode
|
||||||
description: Introduce safe mode
|
description: Ability to use safe mode on small arms.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Sandbags
|
title: Sandbags
|
||||||
description: Adds stackable sandbags
|
description: Adds stackable sandbags.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 1
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Scopes
|
title: Scopes
|
||||||
description: Scope adjustment
|
description: Scope adjustment.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,12 +1,22 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Sitting
|
title: Sitting
|
||||||
description:
|
description: Ability to sit on chairs.
|
||||||
group: feature
|
group: feature
|
||||||
category: interaction
|
category: interaction
|
||||||
parent: wiki
|
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
|
## 1. Overview
|
||||||
Adds the ability to sit on chairs.
|
Adds the ability to sit on chairs.
|
||||||
|
|
||||||
|
@ -1,9 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Slideshow
|
title: Slideshow
|
||||||
|
description: Ability to have automatic or controllable slide-shows.
|
||||||
group: feature
|
group: feature
|
||||||
category: interaction
|
category: interaction
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 2
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Small Arms
|
title: Small Arms
|
||||||
description: Various improvements to small arms
|
description: Various improvements to small arms.
|
||||||
group: feature
|
group: feature
|
||||||
category: realism
|
category: realism
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Spectator
|
title: Spectator
|
||||||
description: A flexible spectator system
|
description: A flexible spectator system.
|
||||||
group: feature
|
group: feature
|
||||||
category: interaction
|
category: interaction
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 2
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Spotting scope
|
title: Spotting scope
|
||||||
description: Adds a deployable spotting scope
|
description: Adds a deployable spotting scope.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 1
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Switch Units
|
title: Switch Units
|
||||||
description:
|
description: Insurgency-style unit switching.
|
||||||
group: feature
|
group: feature
|
||||||
category: interaction
|
category: interaction
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -5,6 +5,11 @@ description: Adds a deployable ladder with adjustable height that you can transp
|
|||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 1
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,16 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Test Missions
|
title: Test Missions
|
||||||
description: Adds an ACE3 Test Missions
|
description: Adds ACE3 Test Missions.
|
||||||
group: feature
|
group: feature
|
||||||
category: general
|
category: general
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 6
|
||||||
|
patch: 0
|
||||||
|
removed: true
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Thermals
|
title: Thermals
|
||||||
description:
|
description: Improves thermal properties.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Tripod
|
title: Tripod
|
||||||
description: Adds a packable tripod deployable on the field
|
description: Adds a packable tripod deployable on the field.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 1
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -5,6 +5,11 @@ description: Selective User Interface framework and other tweaks.
|
|||||||
group: feature
|
group: feature
|
||||||
category: general
|
category: general
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 1
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Vector
|
title: Vector
|
||||||
description: Adds a realistic depiction of the Vector 21 rangefinder
|
description: Adds a realistic depiction of the Vector 21 rangefinder.
|
||||||
group: feature
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Vehicle Lock
|
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
|
group: feature
|
||||||
category: interaction
|
category: interaction
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Vehicles
|
title: Vehicles
|
||||||
description:
|
description: Various tweaks to vehicles and vehicle weapons.
|
||||||
group: feature
|
group: feature
|
||||||
category: realism
|
category: realism
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -5,6 +5,11 @@ description: The view distance module adds extra view distance settings
|
|||||||
group: feature
|
group: feature
|
||||||
category: interaction
|
category: interaction
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 1
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Weapon Select
|
title: Weapon Select
|
||||||
description:
|
description: Ability to quickly select weapons using the number keys.
|
||||||
group: feature
|
group: feature
|
||||||
category: interaction
|
category: interaction
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Weather
|
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
|
group: feature
|
||||||
category: realism
|
category: realism
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Wind Deflection
|
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
|
group: feature
|
||||||
category: realism
|
category: realism
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
redirect_from: "/wiki/feature/windeflection.html"
|
redirect_from: "/wiki/feature/windeflection.html"
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Yardage 450
|
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
|
group: feature
|
||||||
category: equipment
|
category: equipment
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 1
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Zeus
|
title: Zeus
|
||||||
description: The Zeus module improves the Vanilla functionality
|
description: The Zeus module improves the Vanilla functionality.
|
||||||
group: feature
|
group: feature
|
||||||
category: interaction
|
category: interaction
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 1
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Overview
|
## 1. Overview
|
||||||
|
@ -5,6 +5,11 @@ description: Explains how to set-up the cargo framework for custom objects and v
|
|||||||
group: framework
|
group: framework
|
||||||
order: 5
|
order: 5
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 3
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Config Values
|
## 1. Config Values
|
||||||
|
@ -5,6 +5,11 @@ description: Explains how to set-up custom disposable launchers with the ACE3 di
|
|||||||
group: framework
|
group: framework
|
||||||
order: 5
|
order: 5
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
<div class="panel callout">
|
<div class="panel callout">
|
||||||
|
@ -5,6 +5,11 @@ description: Explains how to set-up dragging and carrying of objects with the AC
|
|||||||
group: framework
|
group: framework
|
||||||
order: 5
|
order: 5
|
||||||
parent: wiki
|
parent: wiki
|
||||||
|
mod: ace
|
||||||
|
version:
|
||||||
|
major: 3
|
||||||
|
minor: 0
|
||||||
|
patch: 0
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1. Config Values
|
## 1. Config Values
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: wiki
|
layout: wiki
|
||||||
title: Events Framework
|
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
|
group: framework
|
||||||
order: 5
|
order: 5
|
||||||
parent: wiki
|
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