Gamestudio Links
Zorro Links
Newest Posts
Zorro 2.70
by jcl. 09/29/25 09:24
optimize global parameters SOLVED
by dBc. 09/27/25 17:07
ZorroGPT
by TipmyPip. 09/27/25 10:05
assetHistory one candle shift
by jcl. 09/21/25 11:36
Plugins update
by Grant. 09/17/25 16:28
AUM Magazine
Latest Screens
Rocker`s Revenge
Stug 3 Stormartillery
Iljuschin 2
Galactic Strike X
Who's Online Now
4 registered members (AndrewAMD, TipmyPip, NewbieZorro, Grant), 14,196 guests, and 5 spiders.
Key: Admin, Global Mod, Mod
Newest Members
krishna, DrissB, James168, Ed_Love, xtns
19168 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
[DE/EN] Scrolling Text #253176
02/23/09 10:17
02/23/09 10:17
Joined: Mar 2008
Posts: 68
Germany, Essen
V
virtualmarctek Offline OP
Junior Member
virtualmarctek  Offline OP
Junior Member
V

Joined: Mar 2008
Posts: 68
Germany, Essen
[DE]
Ich möchte bei meinem Spiel einen Credits anschnitt machen und will dabei, dass der Text von unten nach oben durchscrollt, weiß aber nicht wie man das machen könnte. Freue mich auf Antworten, die mir helfen dieses Problem zu beheben.

[EN]
I would like to make a Credits part in my Game and want to make a text that scrolls from down to top, but I don't know how to do this. I'm happy about answers that help!


mfg, Marc V.
Re: [DE/EN] Scrolling Text [Re: virtualmarctek] #253193
02/23/09 13:19
02/23/09 13:19
Joined: Jan 2004
Posts: 3,023
The Netherlands
Helghast Offline
Expert
Helghast  Offline
Expert

Joined: Jan 2004
Posts: 3,023
The Netherlands
.pos_y on a text ?


Formerly known as dennis_fantasy
Portfolio - http://www.designorhea.com/
Project - http://randomchance.cherrygames.org/
Re: [DE/EN] Scrolling Text [Re: Helghast] #253483
02/24/09 23:21
02/24/09 23:21
Joined: Sep 2003
Posts: 5,900
Bielefeld, Germany
Pappenheimer Offline
Senior Expert
Pappenheimer  Offline
Senior Expert

Joined: Sep 2003
Posts: 5,900
Bielefeld, Germany
string credit_str;

text my_credits
{
string = credit_str;
...
}

function something
{
while(showing_credits)
{
my_credits.pos_y += time_step * scroll_speed_of_credits;
...
wait(1);
}
}

Something like this.


Moderated by  HeelX, Lukas, rayp, Rei_Ayanami, Superku, Tobias, TWO, VeT 

Gamestudio download | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1