mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
27 lines
607 B
Plaintext
27 lines
607 B
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: BaerMitUmlaut
|
|
* Handles the blood volume effect.
|
|
*
|
|
* Arguments:
|
|
* 0: Enable <BOOL>
|
|
* 1: Intensity <NUMBER>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [false, 0.5] call ace_medical_feedback_fnc_effectBloodVolume
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_enable", "_intensity"];
|
|
|
|
if ((!_enable) || {_intensity == 0}) exitWith {
|
|
GVAR(ppBloodVolume) ppEffectEnable false;
|
|
};
|
|
GVAR(ppBloodVolume) ppEffectEnable true;
|
|
GVAR(ppBloodVolume) ppEffectAdjust [1, 1, 0, [0, 0, 0, 0], [1, 1, 1, 1 - _intensity], [0.2, 0.2, 0.2, 0]];
|
|
GVAR(ppBloodVolume) ppEffectCommit 1;
|