Clickteam Fusion 2.5

Clickteam Fusion 2.5

Paultermelon Jun 29, 2017 @ 12:43pm
Can someone tell me how to do this?
Can someone tell me how to make this kind of dialogue scrolling? https://www.youtube.com/watch?v=x8rkx74glHE&feature=share (0:15)

Thank you guys in advance :)
< >
Showing 1-4 of 4 comments
tommygun9019 Jun 29, 2017 @ 1:23pm 
Here's a tutorial on these 'letter-by-letter' dialogues

https://www.youtube.com/watch?v=8HXfWbaciRU

If you want the text to be centered, just change text alignment in String object's properties (I haven't tried this but I think it should work).
Last edited by tommygun9019; Jun 29, 2017 @ 1:27pm
Paultermelon Jun 29, 2017 @ 1:48pm 
Thank you very much.
DarkChorus Jun 29, 2017 @ 6:55pm 
To have the text spread out from the middle, you would need to loop through the string and add the left and right characters together:

I am not sure how Fusion handles strings but here is a BASIC version:
len(a$) would give the value of the length of the string.
This scrolling technique works best if there the string to display is an even numbered length. If it is an odd numbered length, add a space to the end of the string.

A$ = "Text To Be Scrolled"
for i = 1 to len(a$)/2
Display$ = Left$(A$,i) + Right$(A$, Len(a$)-i)
// Takes the Leftmost characters and adds them to the rightmost characters
// Loop through the length to display the entire string, A$
Print Display$
Next i
kisguri  [developer] Jun 29, 2017 @ 7:18pm 
Here is a simple 1 line example of how to do this effect....

http://steamcommunity.com/sharedfiles/filedetails/?id=959683378
< >
Showing 1-4 of 4 comments
Per page: 1530 50

Date Posted: Jun 29, 2017 @ 12:43pm
Posts: 4