• 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 gotanidea · Jun 30, 2012 at 08:43 AM · guirectmatrixdrawtexturespeedometer

Scale Car Speedometer with Screen Size (made by Andeeee)

I find a great Car Speedometer prefab on the Unity 3D forum, made by the administrator, Andeeee.

The thread URL:

http://forum.unity3d.com/threads/63885-Car-speedometer-dial

It works great (thanks to Andeeee), but it will not resize automatically if the screen size changes.

On the forum thread, a guy posted a code to do this, but the needle disappears.

The original code:

http://jsfiddle.net/rvcCM/

How to scale the speedometer automatically if the screen size changes?

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 lasha_an · Aug 17, 2012 at 05:59 PM 0
Share

please help, i have the same problem

avatar image Mander · Aug 17, 2012 at 07:05 PM 1
Share

in the same thread where u got the script there u can find what u r looking for. read guys

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by lasha_an · Aug 17, 2012 at 07:24 PM

the answer acctuially is:

 var dialTex: Texture2D;
 var needleTex: Texture2D;
 var dialPos: Vector2;
 var topSpeed: float;
 var stopAngle: float;
 var topSpeedAngle: float;
 var speed: float;
 
 dialPos.x = 0;
 
 dialPos.y = Screen.height - dialTex.height;
 
 
 function OnGUI() {
     GUI.DrawTexture(Rect(dialPos.x, dialPos.y, dialTex.width, dialTex.height), dialTex);
     var centre = Vector2(dialPos.x + dialTex.width / 2, dialPos.y + dialTex.height / 2);
     var savedMatrix = GUI.matrix;
     var speedFraction = speed / topSpeed;
     var needleAngle = Mathf.Lerp(stopAngle, topSpeedAngle, speedFraction);
     GUIUtility.RotateAroundPivot(needleAngle, centre);
     GUI.DrawTexture(Rect(centre.x, centre.y - needleTex.height / 2, needleTex.width, needleTex.height), needleTex);
     GUI.matrix = savedMatrix;
 }
 function Update() {
       speed = Vector3.Dot(rigidbody.velocity, transform.forward);
     }
     
     function ForwardSpeed() {
 
   return Vector3.Dot(rigidbody.velocity, transform.forward);
 
 }

thx Mander.

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.

Welcome to Unity Answers

The best place to ask and answer questions about development with Unity.

To help users navigate the site we have posted a site navigation guide.

If you are a new user to Unity Answers, check out our FAQ for more information.

Make sure to check out our Knowledge Base for commonly asked Unity questions.

If you are a moderator, see our Moderator Guidelines page.

We are making improvements to UA, see the list of changes.



Follow this Question

Answers Answers and Comments

6 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Problem moving a Rect 1 Answer

texCoords rect for GUI.DrawTextureWithTexCoords 3 Answers

Using Grayscale Textures For Transparency 1 Answer

Rect to RectTransform on overlay Canvas? 1 Answer

GUI.DrawTexture not working? (nothing shows up) 1 Answer

  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges