Staredit Network

Staredit Network -> UMS Assistance -> animating text
Report, edit, etc...Posted by ToFu on 2007-01-04 at 11:05:30
In game how do you do the animating text during in game?
Report, edit, etc...Posted by green_meklar on 2007-01-04 at 11:22:38
As far as I know you have to keep putting up more text messages, each with different formatting. You can't animate a single string of text.
Report, edit, etc...Posted by Falkoner on 2007-01-04 at 11:53:34
Although, you have to have the right number of spaces each time you display new text so that the old text is erased, I'm not sure how many lines the screen has but here is a tutorial that should basically tell you how to do it, you just need to find how how many lines to use to remove the old text.
Report, edit, etc...Posted by Mp)Blu on 2007-01-04 at 11:58:35
x19 Blank lines
On 20th line= text

I know that there is a lower blank line number..but 20 is garaunteed.
Report, edit, etc...Posted by T-a-r-g-e-t on 2007-01-04 at 14:34:59
i use animated text systems all the time. starcraft is capable of displaying 11 lines of text at any one time. so every time you make the display text action, use 11 lines of text, even if the unused lines of text are blank. here is an example;

conditions;
always

actions;
display text "R










"
wait 50 milliseconds
display text "Re










"
wait 50 milliseconds
display text "Red










"
Report, edit, etc...Posted by LegacyWeapon on 2007-01-04 at 17:16:14
You probably want the linebreaks before the text...
Ex:
CODE
1
2
3
4
5
6
7
8
9
10
11
12 H

CODE
1
2
3
4
5
6
7
8
9
10
11
12 He

CODE
1
2
3
4
5
6
7
8
9
10
11
12 Hel
Report, edit, etc...Posted by MicAarZur on 2007-01-05 at 00:05:11
Legacy, your post would be totally necessary if there wasn't a tutorial.
If there was, it would be pointless! Right?
Report, edit, etc...Posted by Archon_Master on 2007-01-05 at 00:39:50
I'm sure theres something about animating text in the Tutorials DB. Just check.
Report, edit, etc...Posted by O)FaRTy1billion on 2007-01-05 at 01:25:00
There is only 11 lines in a screen. Anything more is just a waste.
Next Page (1)