BIS fnc getCloudletParams: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Generated by BIS_fnc_exportFunctionsToWiki)
 
m (Text replacement - " <nowiki>[</nowiki>" to " [<nowiki/>")
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
{{Function|Comments=
{{Function|= Comments
____________________________________________________________________________________________
____________________________________________________________________________________________


| arma3 |= Game name
| arma3 |Game name=


|1.00|= Game version
|1.76|Game version=
____________________________________________________________________________________________
____________________________________________________________________________________________


| <pre>/*
| Return particle params of CfgCloudlets class. |Description=
 
Description:
Return particle params of CfgCloudlets class
 
Parameter(s):
0: STRING - CfgCloudlets class
 
Returns:
ARRAY in format [setParticleParams, setParticleRandom, setDropInterval]
*/
 
</pre><small>''(Placeholder description extracted from the function header by [[BIS_fnc_exportFunctionsToWiki]])''</small> |= Description
____________________________________________________________________________________________
____________________________________________________________________________________________


| <!-- [] call [[BIS_fnc_getCloudletParams]]; --> |= Syntax
| [cfgCloudletClass] call [[BIS_fnc_getCloudletParams]] |Syntax=


|p1= |= Parameter 1
|p1= cfgCloudletClass: [[String]] - wanted class in cfgCloudlets |Parameter 1=


| |= Return value
| [[Array]] - format [<nowiki/>[[setParticleParams]], [[setParticleRandom]], [[setDropInterval]]]:
<spoiler><code>
[
[
[particleShape, particleFSNtieth, particleFSIndex, particleFSFrameCount, particleFSLoop],
animationName,
particleType,
timerPeriod,
lifeTime,
position,
moveVelocity,
rotationVelocity,
weight,
volume,
rubbing,
size,
color,
animationSpeed,
randomDirectionPeriod,
randomDirectionIntensity,
onTimerScript,
beforeDestroyScript,
"",
angle,
onSurface,
bounceOnSurface,
emissiveColor
],
[
lifeTimeVar,
positionVar,
moveVelocityVar,
rotationVelocityVar,
sizeVar,
colorVar,
randomDirectionPeriodVar,
randomDirectionIntensityVar,
angleVar,
bounceOnSurfaceVar
],
interval
]</code></spoiler>|Return value=
____________________________________________________________________________________________
____________________________________________________________________________________________


|x1= <code></code> |=  
|x1= <code>["AmmoLightSmokeParticles"] [[call]] [[BIS_fnc_getCloudletParams]];</code> |Example 1=
____________________________________________________________________________________________
____________________________________________________________________________________________


| |= See also
| [[Arma 3 Particle Effects]], [[setParticleParams]], [[setParticleRandom]], [[setDropInterval]], [[drop]] |See also=
 
}}
}}


Line 45: Line 72:


<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>
[[Category:Functions|{{uc:getCloudletParams}}]]
[[Category:Function Group: Misc|{{uc:getCloudletParams}}]]
[[Category:Function Group: Misc|{{uc:getCloudletParams}}]]
[[Category:Functions|{{uc:getCloudletParams}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:getCloudletParams}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:getCloudletParams}}]]

Revision as of 13:57, 19 March 2020

Hover & click on the images for description

Description

Description:
Return particle params of CfgCloudlets class.
Execution:
call
Groups:
Uncategorised

Syntax

Syntax:
[cfgCloudletClass] call BIS_fnc_getCloudletParams
Parameters:
cfgCloudletClass: String - wanted class in cfgCloudlets
Return Value:
Array - format [setParticleParams, setParticleRandom, setDropInterval]:

[ [ [particleShape, particleFSNtieth, particleFSIndex, particleFSFrameCount, particleFSLoop], animationName, particleType, timerPeriod, lifeTime, position, moveVelocity, rotationVelocity, weight, volume, rubbing, size, color, animationSpeed, randomDirectionPeriod, randomDirectionIntensity, onTimerScript, beforeDestroyScript, "", angle, onSurface, bounceOnSurface, emissiveColor ], [ lifeTimeVar, positionVar, moveVelocityVar, rotationVelocityVar, sizeVar, colorVar, randomDirectionPeriodVar, randomDirectionIntensityVar, angleVar, bounceOnSurfaceVar ], interval ]

↑ Back to spoiler's top

Examples

Example 1:
["AmmoLightSmokeParticles"] call BIS_fnc_getCloudletParams;

Additional Information

See also:
Arma 3 Particle EffectssetParticleParamssetParticleRandomsetDropIntervaldrop

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

Notes

Bottom Section