Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

164
Views
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 !

over 4 years ago · Santiago Trujillo
1 answers
Answer question

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;
    }        
}
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!