Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by dbalaji94 · Jul 25, 2017 at 01:02 PM · speeddistancepitch

How to increase the pitch of an audio with respect to distance?

Hi guys,

I want to increase the pitch of an audio with respect to distance. I placed an object somewhere in the scene and with the distance between Camera and the object i need to increase the pitch gradually.

 if (dist > 4.5f)  // 4.5 is my max distance
                     {
                         gameObject.GetComponent<AudioSource>().pitch = 0.75f;
                     }
 else if (dist < 1.5f)  // 1.5 is my min distance
                     {
                         gameObject.GetComponent<AudioSource>().pitch = 1.5f;
                     }
  else
                     {
                         // While the distance is between 1.5(min dist) - 4.5(max dist), I need to increase the pitch from 0.75(slow) to 1.5(fast) according to the distance. So when the Camera comes near the object the pitch should be high and when the camera is far away from the object pitch should be low. I hope you are getting my question.
                     }
 
 
 
 
 
Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

1 Reply

· Add your reply
  • Sort: 
avatar image
1
Best Answer

Answer by MattG54321 · Jul 25, 2017 at 02:10 PM

Hi! I think I understood what you needed. Instead of using an if statement to keep dist between 1.5 and 4.5, I used Mathf.Clamp.

 //Put these outside of any methods so you can change them easily.
 public float minDist = 1.5;
 public float maxDist = 4.5;
 public float closePitch = 1.5;
 public float farPitch = .75;
 
 //Replace your if/else/elseif with this:
 float x = Mathf.Clamp(dist, 1.5f, 4.5f);
 float pitch = (farPitch - closePitch) * (x - minDist) / (maxDist - minDist) + closePitch;
 gameObject.GetComponent<AudioSource>().pitch = pitch;

The math part comes from irritate's answer to a different post. I also recommend you store your AudioSource component as a variable and use GetComponent only in Start(). It's a pretty slow function and since it doesn't change, you don't need to call it every time, anyway.

Comment
Add comment · Show 2 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image dbalaji94 · Jul 26, 2017 at 06:00 AM 0
Share

It worked perfectly. Thank you so much :))

avatar image MattG54321 dbalaji94 · Jul 26, 2017 at 01:26 PM 0
Share

Happy to help!

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

68 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Sigh... Need help with moving object a distance over time 1 Answer

Sound volume and pitch based on speed of rigidbody and/or normal object? 1 Answer

Pitch changes when i get closer to object with audio source 1 Answer

Calculating a bullet time of impact based on speed and distance 1 Answer

how to change pitch of sound without changing speed? wav file 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges