ACE3/docs/wiki/framework/nightvision-framework.md
Tittoffer 82913af107 Rewrite night vision documentation (#5715)
* First draft rewrite nightvision doc.

* Minor phrasing fixes.
2017-12-20 14:21:55 -06:00

1.1 KiB

layout title description group order parent mod version
wiki Night Vision Framework Explains how to set-up night vision goggles with ACE3 night vision system. framework 5 wiki ace
major minor patch
3 12 0
Note:

Changed in 3.12.0.

1. Config Values

class CfgWeapons {
  class myNightVision: NVGoggles {
      scope = 1;
      modelOptics = "";
      author = ECSTRING(common,ACETeam);
      descriptionShort = "Biocular nightvision goggles";
      displayName = "NV Goggles (Bio)";
      GVAR(border) = QPATHTOF(data\nvg_mask_binos_4096.paa); // Edge mask for different tube configurations. Three types: mono, bino and quad.
      GVAR(bluRadius) = 0.13; // Edge blur radius.
      GVAR(eyeCups) = 1; // Does have eyecups.
      GVAR(generation) = 4; // Generation 4. Affects image quality.
  };
};

2. Events

To change night vision settings with code use:

ace_nightvision_fogScaling = 0.5; // More is more fog.

ace_nightvision_effectScaling = 0.5; // More is more apparent effects.