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 LeftEyeScar · Jul 25, 2014 at 10:03 AM · string

How do I increase string size over time?

I want my string to appear as nothing and then slowly animate itself to show more characters like a typewriter,

A > AB > ABC

as time goes on. So that rather than a message appearing all at once, it will slowly be revealed. I can't find anywhere that this process is explained. If someone could give me a hand it would really be appreciated.

Using C#

Comment
Add comment · Show 4
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 DajBuzi · Jul 25, 2014 at 10:04 AM 0
Share
 string str = "";
 yield return new WaitForSeconds(0.1f);
 str += "A";
 yield return new WaitForSeconds(0.1f);
 str += "B";
avatar image Paulo-Henrique025 · Jul 25, 2014 at 11:46 AM 0
Share

@DajBuzi, post answers as answers not as comments mate :)

avatar image Graham-Dunnett ♦♦ · Jul 25, 2014 at 11:47 AM 0
Share

You appear to know what string concatenation is, and how to delay script execution. :-) What is the problem you have?

avatar image LeftEyeScar · Jul 25, 2014 at 12:12 PM 0
Share

The problem is that I want to pre define a message $$anonymous$$g. "Hey, come over here!" but I want it to slowly be revealed "H", "He" etc. I then want to change the message according to another part of the script, so that the message will then appear "I'm glad you came" and that will slowly be revealed also. I don't want to individually add a new char via the code.

1 Reply

· Add your reply
  • Sort: 
avatar image
1

Answer by gjf · Jul 25, 2014 at 11:44 AM

you might want to look at this too

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

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

iOS Not Converting String to Integer 0 Answers

converting string from a textfield to float 3 Answers

How do I find the amount of characters in a float? 1 Answer

Character at index of string? Finding which character is at an index like in Javascript charAt 1 Answer

how can i split a word to individual letters..?? 2 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