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
1
Question by kag359six · Nov 25, 2012 at 07:40 PM · guiscrollviewscrollbar

ScrollView not....scrolling.

I'm not totally sure how the scrollView works exactly. When I tried implementing it, the buttons appear and all that good stuff, but the scrollbar doesnt move, and basically it doesn't scroll.

         scrollPosition = GUI.BeginScrollView(new Rect(0,50,width/2,height), scrollPosition,
             new Rect(0,0,width/2,height*2));
         
         float px = 0;
         float py = 0;
         float tw = 50;
         float th = 50;
         
         for(int i = 0; i < 10; i++) {
             
             GUI.Button(new Rect(px,py,tw,th), "button: " + i);    
             
             py += 75;
             
         }
 
         
         GUI.EndScrollView();
         
     }
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
3
Best Answer

Answer by DeveshPandey · Nov 26, 2012 at 12:08 PM

Try this:

 Vector2 scrollPosition = Vector2.zero;
 float height = Screen.height;
 float width= Screen.width;
 
 void OnGUI(){
 
 scrollPosition = GUI.BeginScrollView(new Rect(0,50,width/2,height), scrollPosition,
          new Rect(0,0,width/2,height*2));
 
        float px = 0;
        float py = 0;
        float tw = 50;
        float th = 50;
 
        for(int i = 0; i < 10; i++) {
 
          GUI.Button(new Rect(px,py,tw,th), "button: " + i);   
 
          py += 75;
 
        }
 
 
        GUI.EndScrollView();
 
     }
Comment
Add comment · Show 2 · 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 kag359six · Nov 27, 2012 at 12:03 AM 0
Share

thanks forgot to set scrollView equal to scrollPosition

avatar image Deathpyre · Jun 11, 2014 at 08:06 PM 0
Share

same problem, thanks

avatar image
2

Answer by ExTheSea · Nov 25, 2012 at 09:01 PM

Where do you declare scrollPosition. If you declare it inside OnGUI() it won't work because it's reseting the scrollposition each Game Tick. You have to declare scrollposition outside of a function like this:

 var scrollPosition : Vector2;

Hope this works for you.

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 kag359six · Nov 26, 2012 at 11:28 PM 0
Share

scrollPosition was declared I just didn't show it.

avatar image copypasteearth · Aug 16, 2013 at 04:15 AM 0
Share

thanks, this is the answer for my problem

avatar image GamerRaj · Dec 17, 2014 at 02:42 PM 0
Share

Thanks ExTheSea, your tip helped me.

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

15 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

Related Questions

Scrollbar / BeginVertical GUI Issue 0 Answers

GUIlayout scrollbar, Not working well... 1 Answer

How to disable ScrollView dragging 4 Answers

Scrollview automatically scrolling up when draging scrollbar 0 Answers

knowing when a ScrollView's scrollbar is focused 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