mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
25 lines
732 B
Plaintext
25 lines
732 B
Plaintext
|
/*
|
||
|
* Author: BaerMitUmlaut
|
||
|
* Creates the incapacitation effect.
|
||
|
*
|
||
|
* Arguments:
|
||
|
* None
|
||
|
*
|
||
|
* Return Value:
|
||
|
* None
|
||
|
*/
|
||
|
#include "script_component.hpp"
|
||
|
|
||
|
GVAR(ppIncapacitationBlur) ppEffectEnable true;
|
||
|
GVAR(ppIncapacitationGlare) ppEffectEnable true;
|
||
|
|
||
|
GVAR(ppIncapacitationBlur) ppEffectAdjust [6];
|
||
|
GVAR(ppIncapacitationGlare) ppEffectAdjust [1.2, 2, 0, [0, 0, 0, 0], [1, 1, 1, 1], [0, 0, 0, 0]];
|
||
|
GVAR(ppIncapacitationBlur) ppEffectCommit 0;
|
||
|
GVAR(ppIncapacitationGlare) ppEffectCommit 0;
|
||
|
|
||
|
GVAR(ppIncapacitationBlur) ppEffectAdjust [0];
|
||
|
GVAR(ppIncapacitationGlare) ppEffectAdjust [1.0, 1, 0, [0, 0, 0, 0], [1, 1, 1, 1], [0, 0, 0, 0]];
|
||
|
GVAR(ppIncapacitationBlur) ppEffectCommit 5;
|
||
|
GVAR(ppIncapacitationGlare) ppEffectCommit 5;
|