I have DoubleBulletPrefab that has Duplicated Child attached to it.
It is like classical Arcade game when you upgrade from SingleBulletPrefab to better gun which shoots DoubleBulletPrefab (from left and right cannon at the same time)
So the Prefab is just two capsules next to each other. (Parent, Child)
The problem I have is that the child is not triggering the collision and it’s going straight through enemy.
I tried attaching the script to child as well (Which I think I shouldn’t have to because it is child of Prefab and I want it to do exactly same thing as its Parent) but when I did that It would shoot Parent without child + my previous SingleBulletPrefab.
What am I doing wrong here?
I appreciate all sugestions and help.
How exactly do your bullet scripts work? Remember that OnTrigger messages only get sent to the object with the trigger, not the parent (unless you create a collisionForwarder script which uses SendMessageUpwards("OnTriggerEnter", collider);, like I do!)
– syclamoth