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 NightWarrior · Jun 01, 2017 at 03:02 PM · scripting problemnot workingcursor

LockCursor script not working as intended

I wrote a very simple script which hides and locks the mouse when escape is pressed and unlocks it and shows is back when pressed again. The issue is that sometimes it hides it when it is pressed and sometimes it doesn't. The same goes for the showing. I have no idea where the problem is.

     private bool isCursorLocked;
 
     void Start ()
     {
         isCursorLocked = true;
     }
 
     void CheckCursorStatus()
     {
         if (isCursorLocked) {
             Cursor.lockState = CursorLockMode.Locked;
             Cursor.visible = false;
         } else {
             Cursor.lockState = CursorLockMode.None;
             Cursor.visible = true;
         }
     }
 
     /*
      ************************** GUI Functionality **************************
      */
      void CheckMenuInput()
     {
         if (Input.GetAxis("Menu") > 0) {
             if (isCursorLocked) {
                 isCursorLocked = false;
             } else {
                 isCursorLocked = true;
             }
         }
     }
 
     void Update ()
     {
         CheckMenuInput();
         CheckCursorStatus();
     }
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

3 Replies

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

Answer by ShadyProductions · Jun 02, 2017 at 08:53 AM

          if (isCursorLocked) {
              isCursorLocked = false;
          } else {
              isCursorLocked = true;
          }

can be simplified to

 isCursorLocked = !isCursorLocked

also because you use (Input.GetAxis("Menu") > 0) { it will constantly trigger this each frame in update which might give u weird effects, while if u use something like GetKeyDown it will only trigger once, when the key is pressed for the first time initially.

Comment
Add comment · Show 1 · 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 NightWarrior · Jun 03, 2017 at 06:46 PM 0
Share

Replacing GetAxis with Get$$anonymous$$eyDown worked. I wish I had tried that myself, but I thought the problem was not co$$anonymous$$g from there. Thank you!

avatar image
-1

Answer by SrGonzalez · Jun 02, 2017 at 08:52 AM

try to add this line to your start function:

  void Start ()
  {
      isCursorLocked = true;
      CheckCursorStatus();   //this will execute the check fucntion
  }
Comment
Add comment · 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
0

Answer by Lili-Shi · Jun 07, 2017 at 01:38 PM

Have you tried this functionality on a built version of your game, or just in the editor?

Being in the Editor and setting the Cursor.lockState to CursorLockMode.Locked (which btw should automatically turn the cursor invisible), and then pressing Escape will result in the Editor resetting the Cursor.lockState, however having the game built, the Cursor.lockState set to CursorLockMode.Locked and then pressing Escape won't "release" the cursor, unless you explicitely code that in.

And to answer your implicit question beforehand: As I glanced through your script, I can say, that it look's fine on first glance.

Comment
Add comment · 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

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

104 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 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

Rest of project ignoring script 0 Answers

Collision being ignored 3 Answers

Door Script compiler error 0 Answers

Cursor not locking in center of screen? 1 Answer

Script wont work for me please give me answers or a new script,camera folllow script is very janky and twitchs alot please help 2 Answers


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