Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 14 Next capture
2021 2022 2023
2 captures
12 Jun 22 - 14 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 /
  • Help Room /
avatar image
0
Question by 22ecvvw · Mar 24, 2018 at 02:11 PM · guitexturevector2mathf.clamp

Mathf.Clamp() Not working, one corner only.

The code works, this is used for an OffScreen enemy indicator (Location of enemy), but an issue is arising on play. The arrow used will only show on the bottom left corner of the screen, I can see that they are moving but only in one corner, not the whole screen, I've looked through this all morning and I cannot find what went wrong if anyone can point me in the right direction I would be very grateful. EDIT: I just tested a few more times and noticed, when I look at the object the arrow does not go away it stays on screen, I believe this is something to do with area set?

  public Texture2D icon; //The icon. Preferably an arrow pointing upwards.
  public float iconSize = 50f;
  [HideInInspector]
  public GUIStyle arrow; //GUIStyle to make the box around the icon invisible. Public so that everything has the default stats.
  Vector2 indRange;
  float scaleRes = Screen.width/200; //The width of the screen divided by 500. Will make the GUI automatically
  //scale with varying resolutions.
  Camera cam;
  public bool visible = false; //Whether or not the object is visible in the camera.
  
  void Start () {
      visible = GetComponent<SpriteRenderer> ().isVisible;
  
      cam = Camera.main; //Don't use Camera.main in a looping method, its very slow, as Camera.main actually
      //does a GameObject.Find for an object tagged with MainCamera.
  
      indRange.x = Screen.width - (Screen.width / 6);
      indRange.y = Screen.height - (Screen.height / 7);
      indRange /= 2f;
  
      arrow.normal.textColor = new Vector4 (0, 0, 0, 0); //Makes the box around the icon invisible.
  
  }
  
  void OnGUI () {
      if (visible) {
          Vector3 dir = transform.position - cam.transform.position;
          dir = Vector3.Normalize (dir);
          dir.y *= -1f;
  
          Vector2 indPos = new Vector2 (indRange.x * dir.x, indRange.y * dir.y);
          indPos = new Vector2 ((Screen.width / 2) + indPos.x,
              (Screen.height / 2) + indPos.y);
  
          Vector3 pdir = transform.position - cam.ScreenToWorldPoint(new Vector3(indPos.x, indPos.y,
              transform.position.z));
          pdir = Vector3.Normalize(pdir);
  
          float angle = Mathf.Atan2(pdir.x, pdir.y) * Mathf.Rad2Deg;
  
          GUIUtility.RotateAroundPivot(angle, indPos); //Rotates the GUI. Only rotates GUI drawn after the rotate is called, not before.
          GUI.Box (new Rect (indPos.x, indPos.y, scaleRes * iconSize, scaleRes * iconSize), icon,arrow);
          GUIUtility.RotateAroundPivot(0, indPos); //Rotates GUI back to the default so that GUI drawn after is not rotated.
      }
  }
  
  public void OnBecameInvisible() {
      visible = false;
  }
  //Turns off the indicator if object is onscreen.
  public void OnBecameVisible() {
      visible = true;
  }

   
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

0 Replies

· Add your reply
  • Sort: 

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

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

I want to create a game type Crash Bandicoot (I need help) 3 Answers

How can I use UI Image as a button? 0 Answers

2d cannon projectile not following expected path 1 Answer

Ignore Collider Grip, Object / Player Knockback 1 Answer

I need to set a vector 2 array with some const 2d points for a board game like snakes and stairs help me 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