2016-08-18 16:37:38 +00:00
|
|
|
---
|
|
|
|
layout: wiki
|
|
|
|
title: Night Vision Framework
|
|
|
|
description: Explains how to set-up night vision goggles with ACE3 night vision system.
|
|
|
|
group: framework
|
|
|
|
order: 5
|
|
|
|
parent: wiki
|
2016-08-30 13:49:04 +00:00
|
|
|
mod: ace
|
|
|
|
version:
|
|
|
|
major: 3
|
2017-12-20 20:21:55 +00:00
|
|
|
minor: 12
|
2016-08-30 13:49:04 +00:00
|
|
|
patch: 0
|
2016-08-18 16:37:38 +00:00
|
|
|
---
|
|
|
|
|
2017-12-20 20:21:55 +00:00
|
|
|
<div class="panel callout">
|
|
|
|
<h5>Note:</h5>
|
|
|
|
<p>Changed in 3.12.0.</p>
|
|
|
|
</div>
|
|
|
|
|
2016-08-18 16:37:38 +00:00
|
|
|
## 1. Config Values
|
|
|
|
|
|
|
|
```cpp
|
|
|
|
class CfgWeapons {
|
2017-12-20 20:21:55 +00:00
|
|
|
class myNightVision: NVGoggles {
|
|
|
|
scope = 1;
|
|
|
|
modelOptics = "";
|
|
|
|
author = ECSTRING(common,ACETeam);
|
|
|
|
descriptionShort = "Biocular nightvision goggles";
|
|
|
|
displayName = "NV Goggles (Bio)";
|
2023-10-18 19:03:21 +00:00
|
|
|
ace_nightvision_border = QPATHTOF(data\nvg_mask_binos_4096.paa); // Edge mask for different tube configurations. Three types: mono, bino and quad.
|
|
|
|
ace_nightvision_bluRadius = 0.13; // Edge blur radius.
|
|
|
|
ace_nightvision_colorPreset[] = {0, {0.0, 0.0, 0.0, 0.0}, {1.3, 1.2, 0.0, 0.9}, {6, 1, 1, 0.0}}; // Green preset
|
|
|
|
ace_nightvision_eyeCups = 1; // Does have eyecups.
|
|
|
|
ace_nightvision_generation = 4; // Generation 4. Affects image quality.
|
2017-12-20 20:21:55 +00:00
|
|
|
};
|
2016-08-18 16:37:38 +00:00
|
|
|
};
|
|
|
|
```
|
2023-10-18 19:03:21 +00:00
|
|
|
|
|
|
|
## 2. Color Presets
|
|
|
|
|
|
|
|
Additional color presets
|
|
|
|
|
|
|
|
```cpp
|
|
|
|
ace_nightvision_colorPreset[] = {0.0, {0.0, 0.0, 0.0, 0.0}, {1.1, 0.8, 1.9, 0.9}, {1, 1, 6, 0.0}}; // White Phosphor Preset
|
|
|
|
```
|