progamerz Posted May 1, 2018 Posted May 1, 2018 Hello, is it possible currently to have lets say 2 areas, a big area and a small area, lets say i want to have a 3rd area which should do bigArea - smallarea, is this possible? Thanks
Team Cape Posted May 1, 2018 Posted May 1, 2018 Might be able to do this with a messy poly-area, theoretically, but the better way to do it (if you're looking to say if an entity is contained in this big - small area) is likely bigArea.contains(entity) && !smallArea.contains(entity) 1
progamerz Posted May 1, 2018 Author Posted May 1, 2018 1 hour ago, Team Cape said: Might be able to do this with a messy poly-area, theoretically, but the better way to do it (if you're looking to say if an entity is contained in this big - small area) is likely bigArea.contains(entity) && !smallArea.contains(entity) Thanks, couldn't think about this lol