Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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
2
Question by retched · Feb 24, 2017 at 09:45 AM · imagepanelborder

Way to create a border around a Panel frame

So I might be going about this in the wrong manner, but I can't see to create a border around a 2D Panel like below.

What you see below is an image with a left border that is supposed to take up the right hand side. When I change the resolution of the project from 16 x 9 to anything else (Free Aspect, etc.) it causes that deformation as you see. (I'm using Shapes2D to create the boxes and using panels.)

Is there anyway to create a border for one or more sides of a panel or other square box without turning the whole thing into a rectangle? Or is using Images and image sprites the only way that this is possible?

Imgur

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
1

Answer by AMU4u · Feb 24, 2017 at 07:37 PM

Panels are just images, nothing fancy or special. They just add a default to it.

So in your regard, the best thing to do is first of all make sure you scale by aspect ratio for UI elements. Here is how I would "create" a border. With a fancy custom slider!

   [range(0,1)]
 public float outlinePercentage;
 
   void CreateOutline(){
  Transform backgroundOutline = Instantiate(outlinePrefab, whateverPos, Quaternion.Euler.Identity) as Transform; 
 
 
 
  backgroundOutline.localScale = Vector3.one * (1 - outlinePercentage);
 
 }
 


The last line just multiplies by the neat public float slider we made. So assumably if you crank that down, you'd create a border procedurally.

So the "outline" here is what is essentially masking your border. So lets say you set it at .85% and put white behind it, you would have that thick of a white background behind it, scaled to your UI. Bam!

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
avatar image
0

Answer by Elthen · Feb 26, 2017 at 01:20 PM

Not really sure if I really understood what you tried to say, but:

  • You could try to add a canvas scaler component to your canvas and set the UI Scale mode to scale with screen size, set a reference resolution and the screen match mode to match width or height. For example I tend to set 1080x1920 fro my mobile projects.

  • You can also add one of the Layout components (grid, vertical, horizontal) to distribute your elements and set a padding.

Hope I've helped!

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

6 People are following this question.

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

Related Questions

Panel UI Organisation 0 Answers

How can we access panel' s children for take Tags ? 1 Answer

[Solved]Why my Unity Button's Positions are different. 1 Answer

How to Create simple 2D game??? 1 Answer

why is my image (script) broken? 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