ppEffectCreate: Difference between revisions
Lou Montana (talk | contribs) m (Text replacement - "</dl>   <dl class="command_description"> " to "")  | 
				Lou Montana (talk | contribs)  m (Some wiki formatting)  | 
				||
| Line 15: | Line 15: | ||
|gr1= Camera Control  | |gr1= Camera Control  | ||
|descr= Creates [[Post process effects]] specified by effect name and priority. Supported effects   | |descr= Creates [[Post process effects]] specified by effect name and priority.<br>  | ||
Supported effects:  | |||
{{Columns|2|  | |||
* [[Post_process_effects#RadialBlur|"RadialBlur"]]  | * [[Post_process_effects#RadialBlur|"RadialBlur"]]  | ||
* [[Post_process_effects#ChromAberration|"ChromAberration"]]  | * [[Post_process_effects#ChromAberration|"ChromAberration"]]  | ||
| Line 24: | Line 25: | ||
* [[Post_process_effects#FilmGrain|"FilmGrain"]]  | * [[Post_process_effects#FilmGrain|"FilmGrain"]]  | ||
* [[Post_process_effects#ColorInversion|"ColorInversion"]]  | * [[Post_process_effects#ColorInversion|"ColorInversion"]]  | ||
|shrink= y  | |||
}}  | |||
|s1= [[ppEffectCreate]] [name, priority]  | |s1= [[ppEffectCreate]] [name, priority]  | ||
|p1  | |p1= name: [[String]] - name of effect type  | ||
|  | |p2= priority: [[Number]] - unique priority, defines order of applying effect to the scene. If there is another effect using the same priority, creation will fail  | ||
|r1= [[Number]] - handle or -1 if failed  | |r1= [[Number]] - handle or -1 if failed  | ||
|s2= [[ppEffectCreate]] [<nowiki/>[name1, priority1],...]  | |s2= [[ppEffectCreate]] [<nowiki/>[name1, priority1], ...]  | ||
|p21=   | |p21= nameX: [[String]] - name of effect type  | ||
|p22=   | |p22= priorityX: [[Number]] - unique priority, defines order of applying effect to the scene. If there is another effect using the same priority, creation will fail  | ||
|r2= [[Array]] of [[Number]]s [handle1, ...] or [[Nothing]] if failed  | |r2= [[Array]] of [[Number]]s [handle1, ...] or [[Nothing]] if failed  | ||
| Line 48: | Line 49: | ||
}}  | }}  | ||
{{Note  | |||
For some examples, check {{ExternalLink|link= http://forums.bistudio.com/showthread.php?t=75528|text= this topic}}   | |user= Lou Montana  | ||
|timestamp= 20090629223300  | |||
|text= For some examples, check {{ExternalLink|link= http://forums.bistudio.com/showthread.php?t=75528|text= this forums' topic.}}  | |||
}}  | |||
{{Note  | |||
|user= Raymix  | |||
|timestamp= 20150624040800  | |||
|text= "wetDistortion" only works if handle is used.  | |||
|game= arma3  | |||
|version= 1.48  | |||
}}  | |||
Revision as of 18:20, 24 November 2021
Description
- Description:
 - Creates Post process effects specified by effect name and priority.
Supported effects: - Groups:
 - Camera Control
 
Syntax
- Syntax:
 - ppEffectCreate [name, priority]
 - Parameters:
 - name: String - name of effect type
 - priority: Number - unique priority, defines order of applying effect to the scene. If there is another effect using the same priority, creation will fail
 - Return Value:
 - Number - handle or -1 if failed
 
Alternative Syntax
- Syntax:
 - ppEffectCreate [[name1, priority1], ...]
 - Parameters:
 - nameX: String - name of effect type
 - priorityX: Number - unique priority, defines order of applying effect to the scene. If there is another effect using the same priority, creation will fail
 - Return Value:
 - Array of Numbers [handle1, ...] or Nothing if failed
 
Examples
- Example 1:
 _ppGrain = ppEffectCreate ["filmGrain", 2005];
Additional Information
- See also:
 - Post process effectsppEffectForceInNVGppEffectEnableppEffectEnabledppEffectDestroyppEffectCommitppEffectCommittedppEffectAdjust
 
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 
- Posted on Jun 29, 2009 - 22:33 (UTC)
 - For some examples, check this forums' topic.
 
- Posted on Jun 24, 2015 - 04:08 (UTC)
 - 
"wetDistortion" only works if handle is used.