Camaro Posted November 15, 2019 Posted November 15, 2019 Is there a way to get the number of Positions an Entity takes up? I see the api has getSizeX and getSizeY, but those both return 1 for hill giants, which span 2 positions in the x and y direction.
BravoTaco Posted November 16, 2019 Posted November 16, 2019 (edited) Hmmm you could get the direction that the hill giant is facing and than add an extra tile depending on where the second tile that the hill giants use. IE. If the second tile is always infront of the hill giant than take the current tile the hill giant is on and add another one that is infront of the hill giant. Edited November 16, 2019 by BravoTaco
Camaro Posted November 16, 2019 Author Posted November 16, 2019 1 hour ago, BravoTaco said: Hmmm you could get the direction that the hill giant is facing and than add an extra tile depending on where the second tile that the hill giants use. IE. If the second tile is always infront of the hill giant than take the current tile the hill giant is on and add another one that is infront of the hill giant. So if a monster spans multiple tiles, its actual position is always the south west most tile, so thats not a problem. I have a function deals with npc's differently depending on the # of tiles it spans, and I want to be able to use that same function such that I can pass it an entity without specifying the # of tiles as a parameter
Camaro Posted January 6, 2020 Author Posted January 6, 2020 Still looking for an answer if anyone knows