Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 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 William_Goodspeed · May 10, 2014 at 07:26 PM · c#menureferencingpause menu

Struggling with my pause menu and main menu

So i've just finished my game project and now I want to implement a main menu and pause menu. I decided to start with the pause menu. So I've got a pause menu code here that I thought would work but it's throwing up some errors and I'm not sure why.

Basically what I've got is a Game Object called Capsule that has a Look Object and Main Camera. I'm scripting in C# but my Mouse look script is in JS because I downloaded it as an asset.

Now I've written this pause script (following a tutorial) and attached it to the Capsule, but it gives me the errors "The type or namespace name "FPSMouseLook" could not be found. Are you missing a using directive or an assembly reference?

Help would be much appreciated!

 using UnityEngine;
 using System.Collections;
 
 public class pause : MonoBehaviour {
     
 
     public bool isPause, paused;
 
 
     // Use this for initialization
     void Start () {
 
 
         paused = false;
         Screen.lockCursor = true;
         Time.timeScale = 1;
 
 
     }
     
     // Update is called once per frame
     void Update () {
 
 
 
         if (Input.GetKeyDown (KeyCode.Escape)) {
                         paused = togglePause ();
                 }
         
 
     
     }
 
     bool togglePause()
     {
         if(Time.timeScale == 0){
             GameObject.Find("Capsule").GetComponent<FPSMouseLook>().enabled = true;
             Screen.lockCursor = true;
             Time.timeScale = 1;
             return(false);
         }
         else{
             GameObject.Find("Capsule").GetComponent<FPSMouseLook>().enabled = false;
             Screen.lockCursor = false;
             Time.timeScale = 0;
             return(true);
         }
 }
 }
Comment
Add comment · Show 2
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 getyour411 · May 10, 2014 at 09:54 PM 0
Share

Do you have the component FPS$$anonymous$$ouseLook assigned to the Capsule, or did that come from the tut code and you don't have that?

avatar image William_Goodspeed · May 10, 2014 at 09:58 PM 0
Share

I have the FPS$$anonymous$$ouseLook attached to my Capsule.

1 Reply

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

Answer by William_Goodspeed · May 10, 2014 at 11:08 PM

Okay I don't have a solution to why this problem was happening but I did find a fix for it.

I replaced the FPSMouseLook script which was Javascript with the standard MouseLook c# version and the script then ran fine. So my suspicion is that there was an issue in referencing a Javascript from a C# script.

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 getyour411 · May 10, 2014 at 11:08 PM 0
Share

Yes that is a common issue; search for many posts/solutions on Unity JS calling C# and vice versa; sorry didn't notice you mentioned that in problem description.

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

20 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

Related Questions

Multiple Cars not working 1 Answer

Distribute terrain in zones 3 Answers

Menu, Game mode Array String to change settings? 1 Answer

Player movement isn't working 1 Answer

Menu Selection using 360 Controller 0 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