CreateUbersplatBJ

Parameters
wherelocation
namestring
redreal
greenreal
bluereal
alphareal
forcePausedboolean
noBirthTimeboolean
comment
patch

1.18a

Source
Blizzard.j (raise an issue to discuss on Github or submit a PR)
return type
ubersplat
Source code
function CreateUbersplatBJ takes location where, string name, real red, real green, real blue, real alpha, boolean forcePaused, boolean noBirthTime returns ubersplat
    set bj_lastCreatedUbersplat = CreateUbersplat(GetLocationX(where), GetLocationY(where), name, PercentTo255(red), PercentTo255(green), PercentTo255(blue), PercentTo255(100.0-alpha), forcePaused, noBirthTime)
    return bj_lastCreatedUbersplat
endfunction