Jass:EnumDestructablesInCircleBJ
Aus Mappedia
| Funktion: EnumDestructablesInCircleBJ | |
|---|---|
| Parameter: | real location code |
| Rückgabewert: | nothing |
| Autor: | Blizzard |
| Quelle: | Blizzard.j |
| Synchron: | Unbekannt |
Code
function EnumDestructablesInCircleBJ takes real radius, location loc, code actionFunc returns nothing local rect r if (radius >= 0) then set bj_enumDestructableCenter = loc set bj_enumDestructableRadius = radius set r = GetRectFromCircleBJ(loc, radius) call EnumDestructablesInRect(r, filterEnumDestructablesInCircleBJ, actionFunc) call RemoveRect(r) endif endfunction
Parameter
| Typ | Name | Beschreibung |
|---|---|---|
| real | radius | |
| location | loc | |
| code | actionFunc |
