Change Text Color
- changes the color of a text object.
To change the color we simply call:
public ChangeTextColor colorChanger;
colorChanger.DoColor();
To later reset the color we do:
public ChangeTextColor colorChanger;
colorChanger.DoResetColor();
Dot Dot Dot
- adds an ellipsis ... to the end of a text
To change the text in runtime we don't call textObject.text = ""
but instead call:
public DotDotDot textObject;
textObject.Set("Hello World!");
Type Writer
- simulates a typewriter effect
To change the text in runtime we don't call textObject.text = ""
but instead call:
public TypeWriter textObject;
textObject.Set("Hello World!");