setEffectDensity
Client-side
Server-side
Shared
Pair: getEffectDensity
This page is incomplete! Help wanted!
Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.
This function sets the density of a specified effect.
Caution
Upper density limit of this function depends on client FX Quality setting. The limit is 1 for Low, 1.5 for Medium, and 2 for High/Very high.
Syntax
setEffectDensity ( )Code Examples
client
This example adds commandsedthat creates spray effect at the player's position and sets its density to 2.
addCommandHandler("sed",function (cmd) local x, y, z = getElementPosition(localPlayer) local effect = createEffect("spraycan", x, y, z) setEffectDensity(effect, 2)end)