I am prototyping a Fortress defense map, where I have an amount of custom enemies spawned at runtime and running to my tower. In order to count the player eliminating the enemies I placed a prop manipulator in the scene to trigger the DestroyedEvent().
The device works perfectly with objects already present in the scene, but it fails to trigger the event with the enemies I have spawned at runtime. I don´t know if this is a bug or the device only works with props that are already in the scene.
If anyone could shine some light on this it would help me a lot.
I actually generate a list of creative props when spawned. I dont know if it may be because they are of type ?creative_prop (According to documentation)
Yes, what I have ended up doing is a loop where I check the IsValid attribute for each prop in the array. This way I know if the player has eliminated an enemy.
I am trying to do something similar. However, my spawned props seem to be invulnerable (they don’t break when shooting them). How did you manage to use the IsValid attribute?
In my case I was using custom props with a skeletal mesh and animation. I had to create a blueprint and set it up, there are plenty of tutorials around that show you how to do it. For me I didn´t have to do anything special to delete them from the scene, just shooting at them. (Check you have everything set up correctly)
The way I used the IsValid attribute was in a loop, just to check if the prop is still in the scene. If it´s not valid that would mean the player eliminated the prop if that makes sense, so I would update the score.
You’re totally right there. I found out the best solution is to place them inside the manipulator volume, and disable “Is Spatially Loaded” if you’re working with assets streaming, otherwise teleporting them might not work if they’re not loaded.
It would be essentially important to have an update on this device, since the maximum amount of spawned props was increased in a recent update.
My game spawns hundreds of props on a Grid, and checking isValid becomes very costly, so I need to limit the checking to locations close to the player. However, this limits some gameplay functions, preventing me from using explosives from a distance, for example.
Another possible update would be a DestroyedEvent directly in the creative_prop, which would solve the performance problem as well.