ppEffectEnable: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\[\[Category:[ _]?Scripting[ _]Commands[ _]Arma[ _]3(\|.*)\]\]" to "{{GameCategory|arma3|Scripting Commands}}")
m (Some wiki formatting)
 
(35 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Command|Comments=
{{RV|type=command
____________________________________________________________________________________________


| arma2 |Game name=
|game1= arma2
|version1= 1.00


|1.00|Game version=
|game2= arma2oa
|version2= 1.50


|gr1= Camera Control |GROUP1=
|game3= tkoh
____________________________________________________________________________________________
|version3= 1.00


| Enable / disable [[Post process effects]] |DESCRIPTION=
|game4= arma3
____________________________________________________________________________________________
|version4= 0.50


| effect [[ppEffectEnable]] enable |SYNTAX=
|gr1= Camera Control


|p1= effect: [[String]] - name of the effect |PARAMETER1=
|descr= Enable / disable [[Post Process Effects]]
{{Feature | important | If effect fails to get enabled (can check it with [[ppEffectEnabled]]) try adding a little [[sleep]] in front of it. }}


|p2= enable: [[Boolean]] |PARAMETER2=
|s1= effect [[ppEffectEnable]] enable


| [[Nothing]] |RETURNVALUE=
|p1= effect: [[String]] - name of the effect
____________________________________________________________________________________________


|s2= effect [[ppEffectEnable]] enable |SYNTAX2=
|p2= enable: [[Boolean]]


|p21= effect: [[Number]] - handle of the effect |PARAMETER21=
|r1= [[Nothing]]


|p22= enable: [[Boolean]] |PARAMETER22=
|s2= effect [[ppEffectEnable]] enable


|r2= [[Nothing]] |RETURNVALUE2=
|p21= effect: [[Number]] - handle of the effect
____________________________________________________________________________________________


|s3= effectArray [[ppEffectEnable]] enable |SYNTAX3=
|p22= enable: [[Boolean]]


|p41= effectArray: [[Array]] of [[Number]]s - array of effect handles |PARAMETER41=
|r2= [[Nothing]]


|p42= enable: [[Boolean]] |PARAMETER42=
|s3= effectArray [[ppEffectEnable]] enable


|r3= [[Nothing]] |RETURNVALUE3=
|p41= effectArray: [[Array]] of [[Number]]s - array of effect handles
____________________________________________________________________________________________


|x1= <code>"colorCorrections" [[ppEffectEnable]] [[true]];</code> |EXAMPLE1=
|p42= enable: [[Boolean]]


|x2= <code>_hndl [[ppEffectEnable]] [[true]];</code>|EXAMPLE2=
|r3= [[Nothing]]


|x3= <code>[_hndl1, _hndl2] [[ppEffectEnable]] [[true]];</code>|EXAMPLE3=
|x1= <sqf>"colorCorrections" ppEffectEnable true;</sqf>
____________________________________________________________________________________________


| [[Post process effects]], [[ppEffectForceInNVG]], [[ppEffectDestroy]], [[ppEffectCreate]], [[ppEffectEnabled]], [[ppEffectCommit]], [[ppEffectCommitted]], [[ppEffectAdjust]] |SEEALSO=
|x2= <sqf>_hndl ppEffectEnable true;</sqf>


| |MPBEHAVIOUR=
|x3= <sqf>[_hndl1, _hndl2] ppEffectEnable true;</sqf>
 
|seealso= [[Post Process Effects]] [[ppEffectForceInNVG]] [[ppEffectDestroy]] [[ppEffectCreate]] [[ppEffectEnabled]] [[ppEffectCommit]] [[ppEffectCommitted]] [[ppEffectAdjust]]
}}
}}


<h3 style='display:none'>Notes</h3>
{{Note
<dl class='command_description'>
|user= Pi123263
<!-- Note Section BEGIN -->
|timestamp= 20240406133257
|text= Using ppEffectEnable immediatelly enables/disables the effect. If you want the effect to fade in/out it might be better to use ppEffectAdjust.


<!-- Note Section END -->
If you want to fade out an effect using ppEffectAdjust you can set the values for the command back to the default and then use ppEffectCommit to set the time for the fadeout.
</dl>
<br>
 
Example:
<h3 style='display:none'>Bottom Section</h3>
Activate effect:
 
<sqf>
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
"colorCorrections" ppEffectAdjust [1,1,0,[0,0,0,0],[0,0,0,0.24],[1,1,1,0],[0.6,0.5,0,0,-0.1,0.4,0.8]];
[[Category:Scripting Commands Arma 2|{{uc:{{PAGENAME}}}}]]
"colorCorrections" ppEffectEnable true;
{{GameCategory|arma3|Scripting Commands}}
"colorCorrections" ppEffectCommit 0;
[[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]]
</sqf>
And then fade the effect out over 10 seconds:
<sqf>
"colorCorrections" ppEffectAdjust [1,1,0,[0,0,0,0],[1,1,1,1],[0.299, 0.587, 0.114, 0],[-1,-1,0,0,0,0,0]];
"colorCorrections" ppEffectCommit 10;
</sqf>
}}

Latest revision as of 10:27, 7 April 2024

Hover & click on the images for description

Description

Description:
Enable / disable Post Process Effects
If effect fails to get enabled (can check it with ppEffectEnabled) try adding a little sleep in front of it.
Groups:
Camera Control

Syntax 1

Syntax:
effect ppEffectEnable enable
Parameters:
effect: String - name of the effect
enable: Boolean
Return Value:
Nothing

Syntax 2

Syntax:
effect ppEffectEnable enable
Parameters:
effect: Number - handle of the effect
enable: Boolean
Return Value:
Nothing

Syntax 3

Syntax:
effectArray ppEffectEnable enable
Parameters:
effectArray: Array of Numbers - array of effect handles
enable: Boolean
Return Value:
Nothing

Examples

Example 1:
"colorCorrections" ppEffectEnable true;
Example 2:
_hndl ppEffectEnable true;
Example 3:
[_hndl1, _hndl2] ppEffectEnable true;

Additional Information

See also:
Post Process Effects ppEffectForceInNVG ppEffectDestroy ppEffectCreate ppEffectEnabled ppEffectCommit ppEffectCommitted ppEffectAdjust

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
Pi123263 - c
Posted on Apr 06, 2024 - 13:32 (UTC)
Using ppEffectEnable immediatelly enables/disables the effect. If you want the effect to fade in/out it might be better to use ppEffectAdjust. If you want to fade out an effect using ppEffectAdjust you can set the values for the command back to the default and then use ppEffectCommit to set the time for the fadeout.
Example: Activate effect:
"colorCorrections" ppEffectAdjust [1,1,0,[0,0,0,0],[0,0,0,0.24],[1,1,1,0],[0.6,0.5,0,0,-0.1,0.4,0.8]]; "colorCorrections" ppEffectEnable true; "colorCorrections" ppEffectCommit 0;
And then fade the effect out over 10 seconds:
"colorCorrections" ppEffectAdjust [1,1,0,[0,0,0,0],[1,1,1,1],[0.299, 0.587, 0.114, 0],[-1,-1,0,0,0,0,0]]; "colorCorrections" ppEffectCommit 10;