Unity Developers Question:
Can two GameObjects, each with only an SphereCollider, both set as trigger and raise OnTrigger events? Explain your answer?
Answer:
No. Collision events between two objects can only be raised when one of them has a RigidBody attached to it. This is a common error when implementing applications that use "physics."
Previous Question | Next Question |
Explain what is an Unity3D file and how can you open a unity3d file? | Explain why deferred lighting optimizes scenes with a lot of lights and elements? |