Advertisement
otorp2

yeolds text marquee

Jan 14th, 2016
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #https://www.dropbox.com/sh/0l91au56fmxni9h/AACCIJDVD04mj69H4G2XNSwZa?dl=0
  2.  
  3. var text = "I am a piece of text!"
  4. var chars = 0
  5.  
  6. func _ready():
  7. set_process(true)
  8.  
  9. func _process(delta):
  10. set_visible_characters(chars)
  11. chars += 1
  12.  
  13. #forgot the call to set_text(text)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement