CreateFogModifierRadiusLocBJ

Parameters
enabled boolean
whichPlayer player
whichFogState fogstate
center location
radius real
comment
patch

1.00

Source
Blizzard.j
return type
fogmodifier
Source code
function CreateFogModifierRadiusLocBJ takes boolean enabled, player whichPlayer, fogstate whichFogState, location center, real radius returns fogmodifier
    set bj_lastCreatedFogModifier = CreateFogModifierRadiusLoc(whichPlayer, whichFogState, center, radius, true, false)
    if enabled then
        call FogModifierStart(bj_lastCreatedFogModifier)
    endif
    return bj_lastCreatedFogModifier
endfunction