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 create3dgames · Jul 02, 2013 at 09:01 PM · guitextureguitextureguilayoutguibox

Create GUI Texture using GUI Layout

How can I display a texture onto the screen without using a Rect? I want to use GUILayout but it seems the only option for that is to use a GUI Box which makes my texture look like this:

gui box

See the box around the texture? I don't need that.

I can achive the look I want with a GUITexture component (from GameObject > Create Other > GUI Texture) like this...

gui texture

...but I want to create it through script.

Any ideas? Thanks in advance.

capture.png (2.2 kB)
capture.jpg (7.9 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

2 Replies

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

Answer by Professor Snake · Jul 02, 2013 at 09:49 PM

Use a GUISkin with a custom style.

Create a new GUISkin by right clicking and selecting Create->GUI Skin. Then, create a new entry in its Custom Styles and set its Image Position setting to ImageOnly:

alt text

Then, draw your heart with a style override.

 var mySkin:GUISkin;
 function OnGUI(){
 GUI.skin=mySkin;
 GUILayout.Box(myRect,myTexture,"nameOfCustomStyle");
 }

Comment
Add comment · Show 1 · 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
avatar image create3dgames · Jul 02, 2013 at 10:22 PM 0
Share

Thanks, it worked!

avatar image
0

Answer by VinhLee · Feb 21, 2017 at 02:21 PM

Create a object with class name : item.cs


 public class Item
 {
     public string Icon;
     public Rect rect;
 
     public Sprite Sprite
     {
         get
         {
             Texture2D t2D = Resources.Load<Texture2D>("2D/icon/" + Icon);
             Sprite sprite;
             if (t2D != null)
             {
                 sprite = Sprite.Create(t2D, rect, new Vector2(0.5f, 0.5f));
                 sprite.name = Icon;
                 return sprite;
             }
             else
                 return null;
         }
     }
 
     public Texture2D TextureIcon
     {
         get
         {
             Sprite sprite = Sprite;
             if (sprite != null)
             {
                 Rect r = sprite.rect;
                 Texture2D icon = new Texture2D((int)r.width, (int)r.height);
                 Debug.Log("Rect:" + r);
                 icon.SetPixels(sprite.texture.GetPixels((int)r.x, (int)r.y, (int)r.width, (int)r.height));
                 icon.Apply();
                 return icon;
             }
             return null;
         }
     }}


And Draw sprite at file ItemWindow.cs

 public class ItemsWindow 
 {
     void OnGUI()
     {
      Item item = Database.ItemData[i];
      if(item.Sprite != null)
           GUILayout.Label(item.TextureIcon,GUILayout.Width(96));
     }
 }

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

17 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

Related Questions

How to script GUI Texture Window to see it in Script (Object's component) 1 Answer

GUITexture HitTest not registering 0 Answers

Get GUITexture to follow ScreenPointToRay ray cast 1 Answer

Toggle GUITexture V.2 1 Answer

GUITexture scaling with aspect ratio? 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