Hello, I’m facing a problem with my blueprint. I have implemented a pickup system where there is an empty placeholder in front of the camera of the first person, so that when the player picks up an object, it destroy the object and place it in the place holder. and for putting down, I’m doing the opposite, when clicking on the spot I want to put the object in, I destroy the item that the user is holding and turning on visibility of the object on that spot. This is working but only for the first item being picked and put down. When there are more than one item to be picked, the second one won’t work because the item(placeholder) was destroyed when the item before was put down. I hope you are following. I’m doing the same function in first person character blueprint for all items that I want to pickup and put down but as I said it works only once. Here is the putting down:
and here is the picking up.
The issue is in putting down when destroying “item” which is the placeholder under first person camera which works fine the first time, put when trying to pick up an object after that, it causes an error and the object is not placed in the placeholder because it was destroyed when dropping the previous object. How would I tweak this to use same method for picking up and putting down many items not only one??