landsandboat/scripts/enum/aoe_radius.lua
MowFord a42edeb03e
new luautil function: getEntitiesInRange()
get all targets in a sphere around an entity
utilizes targetfind on the entity with parameters for aoe type, validtargets, etc
2024-05-24 09:57:20 -05:00

11 lines
203 B
Lua

-----------------------------------
-- AOE_RADIUS enum
-- Defines the origin (center) of the AoE
-----------------------------------
xi = xi or {}
xi.aoeRadius =
{
ATTACKER = 1,
TARGET = 2,
}