Hey again, can anyone help me with a bomb blueprint I’ve been working on?
So how the bomb is supposed to work is that it will detonate either after a few seconds after being thrown or if it collides with certain objects such as an enemy.
Once the bomb detonates, a boolean called ‘Detonation’ is triggered. boolean is supposed to allow the collision sphere extending around the bomb that represents the bomb’s blast radius to damage any enemy or destroy any destructible object caught within its range.
In theory, in practice it hasn’t work as intended as the bomb will detonate without causing any harm. The only way I can get the bomb’s collision sphere to actually have any effect at all is to remove the branch before the On Component Begin Overlap event. allows the bomb to cause harm but the problem is that the collision sphere will always be in a activate state, rather than just when the bomb detonates.
So the question is, how can I get the collision sphere representing the bomb’s blast radius to trigger only when the bomb itself explodes?
I thought that I should also point out that within the bomb detonation portion of the bomb’s blueprint, you can ignore the parts crossed out below.
It’s mostly visual effect stuff that isn’t relevant to the issue at hand. The ‘Apply Damage’ stuff should also be ignored as it also hasn’t been properly implemented & also isn’t relevant to the collision sphere/blast radius issue as well.
Instead, its the ‘Blast Damage’ portion of the blueprint is where I believe where the problem is.
Any ideas?