Company logo
  • Empleos
  • Bootcamp
  • Acerca de nosotros
  • Para profesionales
    • Inicio
    • Empleos
    • Cursos y retos
    • Preguntas
    • Profesores
    • Bootcamp
  • Para empresas
    • Inicio
    • Nuestro proceso
    • Planes
    • Pruebas
    • Nómina
    • Blog
    • Comercial
    • Calculadora

0

99
Vistas
How to make objects collide just once?

I have objects that look like square.(have collider and rigidbody)

I want those squares to make a sound when I hit these squares with an object. But just once(once for scene). If I hit one of the squares again, ıt shouldn't make sound. How could I do this ?

Thanks in advance !

9 months ago · Santiago Trujillo
1 Respuestas
Responde la pregunta

0

When the OnCollisionEnter() method is called you can check if a bool variable was set to true.

hasCollided = false;

void OnCollisionEnter(Collision collision){
    if (!hasCollided){
        // Play sound
        hasCollided = true;
    }        
}
9 months ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos