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 stblue · Jun 28, 2014 at 06:52 PM · scoreplanecoordinates

How to get screen coordinate of plane

I have a plane(game object) where i want to display the score of player at the end of game. i want to know how can i get the plane screen coordinate. plane.position will give the position of center of plane i need to know the x,y coordinate of top left and bottom right so that i can display the score in between them using gui

Ex

GUI.Label(new Rect((plane x),(plane y), (plane width),(plane height)), "Best: "+score);

Also is there is any other way so that i can display my score that fits in plane.

Comment
Add comment · Show 1
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 Jeff-Kesselman · Jun 28, 2014 at 07:12 PM 1
Share

You get the screen coordinate of a world coordinate with https://www.google.com/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#q=camera.worldtoscreenpoint

1 Reply

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

Answer by robertbu · Jun 28, 2014 at 07:41 PM

I'm going to assume you are using a Quad for your 'plane' which has world size of 1.00. If you are using a Unity plane, the base size is 10.0. I'm assume the plane is parallel to the camera plane (it would be solved differently if the plane is at an angle)

 var upperLeft = transform.position;
 upperLeft.x -= 1;
 upperLef.y += 1;
 upperLeft = Camera.main.WorldToScreenPointPoint(upperLeft);
 upperLeft = Screen.height - upperLeft;

 var lowerRight = transform.position;
 lowerRight.x += 1;
 lowerRight.y -= 1;
 lowerLeft = Camera.main.WorldToScreenPoint(lowerRight);
 lowerRight = Screen.height - lowerRight;

If you are using a Unity plane, replace the '1s' with '10s'. This can be done with fewer lines of code. I strung things out so you can see what is going on. And final the last line of each section...

     upperLeft = Screen.height - upperLeft;

...is necessary to convert Screen coordinates to GUI coordinates.

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Check Coordinate if its increasing by value over time 1 Answer

Get mouse positon in world coordinates on a plane? 2 Answers

Moving object on plane 1 Answer

Raycast visual and moving text possition. 1 Answer

Why is the position coordinates different from the scale? 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