- Home /
Can collision be detected when object IsTrigger?
I have hitboxes on my character and the bullets are registering hits on it. The hitboxes are triggers and the bullet is a standard box collider. Is this the issue?
Comment
Best Answer
Answer by -hiTo- · Sep 06, 2013 at 01:32 PM
There should not be an issue. Although you will need to attach a rigidbody to either the bullet or the hitbox to work.
OnTriggerEnter // if it's a Trigger
OnCollisionEnter // if it's a Collider
Your answer
Follow this Question
Related Questions
Extracting child trigger from compound collision 0 Answers
Using shadows as Triggers? 1 Answer
How to restart scene with trigger? 1 Answer
Collider won't collide with a trigger 3 Answers