Hello, I have the following problem:
- I have a BP of a playing board:
- I have another BP of an obstacle that I wanna put on the playing board - it needs to be a separate BP because I want to re-use it on different playing board and always be able to change the master BP at any point (it’s just a little physics-constrained spinning thing; I tested it outside this BP and it works correctly on its own):
- I drag the obstacle BP into the playing board BP, like this (I would presume this would lock it onto the parent static mesh, therefore moving and rotating with it, like the other things there):
- However, when I simulate this, the obstacle is not there. Just the empty board. When I turn on the wireframe mode, I can see that the obstacle is under the board:
- I found out that when I move the obstacle in the BP a lot higher, as in the pic below, then it shows up on the board, floating a little bit on the top (but not as high as in the BP):
And this is also where the ultimate problem is - it doesn’t tilt/rotate/move with the board. Whenever I attach anything else in the board BP to the parent, it stick to the board and moves and rotates with it. But this obstacle BP doesn’t. When I create the obstacle from scratch directly inside the board BP, it works correctly. But I don’t wanna do that because that would mean I would have to create a lot of them for each playing board (I have a lot of them) separately, and that would just be stupid. And idea how to fix this? Am I missing something? Thank you! Cheers.