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 tonyjoseph456 · Mar 12, 2015 at 02:57 PM · textureguitexturescalingunity4.6

Scaling bg gui texture without stretching it in unity 4.6

In my 2d game, I have a bg texture of dimensions (1080 x 1920). In the game, I have created an empty game object called Kitchen and attached a GUI texture on to the kitchen game object. I have attached the following script to this kitchen game object. I got this script while searching on the Unity Answers. Now coming to the problem, whenever I play this on the editor, or in real devices, the bg texture is stretched in the devices. I want the texture to be positioned in such a way that it does not stretch or shrink on real devices, because stretching will destroy the beauty of the bg texture in my game.

I'm using unity 4.6 and the in the texture import settings, I have set the max size as 2048, and format as true colour, Texture type as Editor GUI and Legacy GUI and Filter mode as Bilinear. Can some one please help me out in this matter. Thanks in advance.

 using UnityEngine;
 using System.Collections;
 
 public class Scale:MonoBehaviour{
 
     private GUITexture myGUITexture;
 
 
     void Awake() { 
         myGUITexture = this.gameObject.GetComponent("GUITexture") as GUITexture; 
     }
 
     // Use this for initialization 
     void Start() { 
         // Position the billboard in the center, // but respect the picture aspect ratio 
         int textureHeight = guiTexture.texture.height; 
         int textureWidth = guiTexture.texture.width; 
         int screenHeight = Screen.height; 
         int screenWidth = Screen.width;
         int screenAspectRatio = (screenWidth / screenHeight);
         int textureAspectRatio = (textureWidth / textureHeight);
         int scaledHeight;
         int scaledWidth;
         if (textureAspectRatio == screenAspectRatio)
         {
             // The scaled size is based on the height
             scaledHeight = screenHeight;
             scaledWidth = (screenHeight * textureAspectRatio);
         }
         else
         {
             // The scaled size is based on the width
             scaledWidth = screenWidth;
             scaledHeight = (scaledWidth / textureAspectRatio);
         }
         float xPosition = screenWidth / 2 - (scaledWidth / 2);
         myGUITexture.pixelInset = new Rect( xPosition, (float)( screenHeight - scaledHeight ) / 2.0f, scaledWidth, scaledHeight );
         //myGUITexture.pixelInset = new Rect(xPosition, scaledHeight - scaledHeight, scaledWidth, scaledHeight);
     }
 }
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

2 People are following this question.

avatar image avatar image

Related Questions

Change GUITexture Using UnityScript 1 Answer

GUITexture scaling with aspect ratio? 1 Answer

Blurry Texture at large size. 2 Answers

Eliminate GUITexture Excess? 1 Answer

NullReferenceException: Object reference not set to an instance of an object UnityEngine.GUI.DrawTexture 1 Answer


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