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 actarus · Feb 13, 2012 at 09:57 AM · guitexturebuttoneffect

Gui Button zoom

Hi all,

var myTexture: Texture; function OnGUI() { if (GUI.Button(Rect(10,10,50,50),myTexture)) Debug.Log("Clicked the button with an image");

}

This is my button anyone know how i make the zoom effect button when the mouse is over this button?

Thanks in advance for Help

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

1 Reply

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

Answer by VincentRodriguez · Feb 13, 2012 at 10:25 AM

I think this will scale button :

var myTexture: Texture;
var myRect : Rect;
private var x = 10;
private var y = 10;
private var width = 50;
private var height = 50;
var sizeToGrowX = 10;
var sizeToGrowY = 10;

function Start ()
{
myRect =Rect(x,y,width,height);
}

function OnGUI()
{
if (GUI.Button(myRect,myTexture)) Debug.Log("Clicked the button with an image");
}

function Update ()
{
if(Input.mousePosition.x > x && Input.mousePosition.x < x+width)
{
if(Input.mousePosition.y > y && Input.mousePosition.y < y-height)
{
x-sizeToGrowX;
y-sizeToGrowY;
width+(sizeToGrowX*2);
height+(sizeToGrowY*2);
}
}
else if(Input.mousePosition.x < x && Input.mousePosition.x > x+width)
{
if(Input.mousePosition.y < y && Input.mousePosition.y > y-height)
{
x-sizeToGrowX;
y-sizeToGrowY;
width+(sizeToGrowX*2);
height+(sizeToGrowY*2);
}
}
}

Comment
Add comment · Show 3 · 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 flamy · Feb 13, 2012 at 10:31 AM 0
Share

can you format it, tht would be better for someone to understand?!

avatar image actarus · Feb 13, 2012 at 11:06 AM 0
Share

Thi can scale the button but the texture inside ?

avatar image VincentRodriguez · Feb 13, 2012 at 11:36 AM 0
Share

add this code to function Update if you want to scale texture as the button :

myTexture.width = width;
myTexture.height = height;

or this if want to texture would be smaller :

//variables outside function Update !!!
var $$anonymous$$usScaleTexX = 2;
var $$anonymous$$usScaleTexY = 2; //this inside function Update !!!
myTexture.width = width - $$anonymous$$usScaleTexX;
myTexture.height = height - $$anonymous$$usScaleTexY;

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

6 People are following this question.

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

Related Questions

Make a Button out of a Textured Plane 2 Answers

Buttons and images 1 Answer

dirty lens effect over light help 1 Answer

GUI Button Texture only showing as small 1 Answer

GUI buttons look fine on full screen but distorted otherwise? 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