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 Max 4 · Jun 06, 2011 at 07:51 AM · togglemouselooksensitivity

Toggle camera sensitivity

So here's what I'm adding to a JavaScript version of MouseLook:

     if (Input.GetButton("Zoom"))
     {
     sensitivityX = 1;
     sensitivityY = 1;
     }

How do I make this so that it toggles on and off?

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
0
Best Answer

Answer by Kacer · Jun 06, 2011 at 07:57 AM

 if(Input.GetButton("Zoom")){
      sensivityX = 1;
      sensivityY = 1;
 }else{
      sensivityX = 10;
      sensivityY = 10;
 }

is this what you mean?

if you're pressing the zoom button you've got a sensivity of 1, when you arent pressing it, its got a sensivity of 10 :)

Edit:

im just gonna make this in C# as i cant remember the syntax for javascript, i'll try to explain what i do though, also there might be an easier way to do it, but this is how i would do it ;)

 //make a boolean that will tell you if you're using low sensivity or not.
 private bool lowSensivity = false;

 //remember to change it to "input.GetButtonDown" or the sensivity will keep 
 //changing for every frame as long as you are pressing the Zoom button.
 if(Input.GetButtonDown("Zoom")){
      if(!lowSensivity){
           sensivityX = 1;
           sensivityY = 1;
           lowSensivity = true;
      }else{
           sensivityX = 10;
           sensivityY = 10;
           lowSensivity = false;
      }
 }
Comment
Add comment · Show 7 · 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 Max 4 · Jun 06, 2011 at 08:03 AM 0
Share

I don't want it to be held. I want to just have to press, and then it gets less sensitive, and press again to make it more sensitive.

avatar image Kacer · Jun 06, 2011 at 08:17 AM 0
Share

more like that? :)

avatar image Max 4 · Jun 06, 2011 at 08:31 AM 0
Share

$$anonymous$$ind of. I tried to translate it to JavaScript, but it doesn't revert back to normal after.

avatar image Max 4 · Jun 06, 2011 at 08:32 AM 0
Share

Also, the sensitivity of X doesn't change.

avatar image Kacer · Jun 06, 2011 at 08:47 AM 0
Share

the sensivity on X should change, do you have two mouselook components?

Show more comments

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

2 People are following this question.

avatar image avatar image

Related Questions

sensitivity slider/ drop down help 0 Answers

How to use PlayerPrefs to save to floats (Sensitivity Help) 0 Answers

invert mouse Y-axis hotkey & icon de facto standard 0 Answers

How do I take a public float from a different script and access it 0 Answers

I Want to change ,y sensibility on my MouseLook script 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