Is there a way to use Oview overlay instead of coords? in Developer Help
|
|
Question: Is there any way to use "oview overlays" instead of using coordinates for every single square for a single icon? Here's an example of what I wanna use the "oview overlay" for...
var/obj/kriga/F = new /obj/kriga/
F.loc = locate(M.x-1,M.y-1,M.z)
var/obj/kriga/G = new /obj/kriga/
G.loc = locate(M.x-1,M.y+1,M.z)
And it goes on for a little bit to cover an oview of 3. Would I be able to use that oview to overlay that area instead of using individual coordinates to place each repeated square?
|