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 dukearena · Apr 15, 2012 at 08:08 AM · rotationguitexture

Rotating a Rotated GUI Texture

Hello Everyone!!

How can I rotate this like one single GUI object?

I made a script that show 3 GUI textures in a triangle formation alt text

This is the script:

var barFrame : Texture2D;
var shieldBar : Texture2D;
var healthBar : Texture2D;
var energyBar : Texture2D;

var rotationPerSecond : float = 10;

private var cam : Camera;

private var centralPoint : Vector2;
private var currentPosition : Rect;

private var barOffset : float;

private var shieldRect : Rect;
private var energyRect : Rect;
private var healthRect : Rect;

private var style : GUIStyle;

function Start(){
cam = Camera.main;

style = new GUIStyle();
style.normal.textColor = Color.white;
style.alignment = TextAnchor.MiddleCenter;

rotationFromZero = 0;
}

function Update(){
var b : Bounds = renderer.bounds;

// -- CENTRAL POSITION
centralPoint = cam.WorldToScreenPoint(b.center);
centralPoint.y = Screen.height - centralPoint.y;

currentPosition = CenterRect(centralPoint, barFrame.width, barFrame.height);

barOffset = barFrame.width * 0.25;

shieldRect = currentPosition;
shieldRect.x -= barOffset;
shieldRect.y -= (barOffset -10);

energyRect = currentPosition;
energyRect.x += barOffset;
energyRect.y -= (barOffset - 10);

healthRect = currentPosition;
healthRect.y += barOffset;
}

function OnGUI(){
DrawRotatedBar(shieldBar, 300, shieldRect, "Shield");
DrawRotatedBar(energyBar, 60, energyRect, "Energy");
DrawRotatedBar(healthBar, 0, healthRect, "Health");
}

private function DrawRotatedBar(bar : Texture2D, rotation : int, pos : Rect, label : String){
var matrixBackup : Matrix4x4 = GUI.matrix;
GUIUtility.RotateAroundPivot(rotation, pos.center);
GUI.DrawTexture(pos, bar);
GUI.DrawTexture(pos, barFrame);
GUI.Label(pos, label, style);
GUI.matrix = matrixBackup;
}

private function CenterRect(pos : Vector2, w : float, h : float) : Rect{
return Rect(pos.x - (w 0.5), pos.y - (h 0.5), w, h);
}



The problem is: How can I rotate all like a unique triangle with pivot in center position? This is not working:

function OnGUI(){
var m : Matrix4x4 = GUI.matrix;
GUIUtility.RotateAroundPivot(newRotationAssignedInUpdate, currentPosition.center);
DrawRotatedBar(shieldBar, 300, shieldRect, "Shield");
DrawRotatedBar(energyBar, 60, energyRect, "Energy");
DrawRotatedBar(healthBar, 0, healthRect, "Health");
GUI.matrix = m;
}

Ps. sorry for my english, I'm Italian..

@Edit: Sorry, I forgot: The textures must be drawn separated because they will have separated values (I'll resize it with GUI.BeginGroup)

Immagine 2.jpg (151.3 kB)
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

4 People are following this question.

avatar image avatar image avatar image avatar image

Related Questions

Rotating GUI Texture By Angle 2 Answers

Limit GUI Rotation? 2 Answers

Help with understanding UV's in script created mesh 0 Answers

unity make a skin/texture to a character like the robot from the fps tutorial 1 Answer

iTween and texture problem 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