ACE3/documentation/framework/nightvision-framework.md

22 lines
667 B
Markdown
Raw Normal View History

2015-08-23 19:03:53 +00:00
---
layout: wiki
2015-08-25 01:35:58 +00:00
title: Night Vision Framework
description: Explains how to set-up night vision goggles with ACE3 night vision system.
2015-08-23 19:03:53 +00:00
group: framework
order: 5
parent: wiki
---
2015-08-25 01:35:58 +00:00
## 1. Config Values
2015-08-23 19:03:53 +00:00
```c++
class CfgWeapons {
2015-08-25 01:35:58 +00:00
class MyNightVision {
displayName = "Banana NVGs"; // Name displayed in the inventory
ace_nightVision_grain = 0.75; // Amount of grain (dots) on the screen (more means more grain) - can be higher than 1
ace_nightVision_blur = 0.055; // Blur amount (more means more blur) - keep low values!
ace_nightVision_radBlur = 0.001; // Radial blur amount (more means more blur) - keep low values!
2015-08-23 19:03:53 +00:00
};
};
```