Unity3d Text Scrolling Marquee effect

Source: Internet
Author: User

Demand

in the daily game, the text scrolling effect is more commonly used. For example, the daily game at the top of the news bulletin, chat system text scrolling, all belong to this range.

Ideas

because of the wide use of the place, so want to be able to play as independent as possible outside the game, can be used anywhere function. Text display belongs to the UI category, it is more appropriate to use the GUI function directly in Unity3d.

Realize

first, the news bulletin class

News bulletins The text scrolling is generally left-to-right, or down-to-top scrolling, and is mostly single-row single-column mode.

 Public classLamp:monobehaviour { Public floatScrollviewwidth;  Public floatScrollviewheight;  Public floatMovespeed;  PublicGuiskin Guiskin; Private floatTextpositionx =10f; voidOngui () {Gui.skin=Guiskin; floatScrollviewpositionx = (screen.width-scrollviewwidth)/2;//Center//start RollingGui. Beginscrollview (NewRect (Scrollviewpositionx,Ten, Scrollviewwidth, Scrollviewheight), Vector2.zero,NewRect (Ten,Ten, Scrollviewwidth, scrollviewheight)); Gui. Label (NewRect (Textpositionx,Ten,770, +),"Roll It! Uncle!! "); Textpositionx+ = time.deltatime*Movespeed; //End RollGUI.    Endscrollview (); }  }
Lamp

Summarize

Unity3d Text Scrolling Marquee effect

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.