progamerz Posted May 1, 2018 Share 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 Quote Link to comment Share on other sites More sharing options...
Team Cape Posted May 1, 2018 Share 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 Quote Link to comment Share on other sites More sharing options...
progamerz Posted May 1, 2018 Author Share 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 Quote Link to comment Share on other sites More sharing options...