Ok so pretty much I have a building system in my game. Here is an example of that to help you better understand:
https://gyazo.com/d1c63d29c5ba82f628bfa55aaaf7cf88
I want to make it so the model can ONLY be placed inside of the green barriers. There is one issue however and its that the green barriers need to have canquery off otherwise it causes some issues with other stuff in my game. The issue I am having is I am wondering what would be the best way to check if the model is inside a green barrier.
The current method I have in mind:
- All barriers are inside of a folder
- Cycle through that folder and getpartsboundinbox for every barrier until the model is found and if its not it wont let you place it.
Only issue with that is it seems kind of inefficient as there will possibly be hundreds of those green barriers around the map. Is there a more efficient way you could think of? All help is greatly appreciated.