how to make a credit scrolling reel

You must understand the Game Editor concepts, before post here.

how to make a credit scrolling reel

Postby jman » Thu Dec 06, 2007 12:38 am

Title says it all 8)
Labyrinth-just starting
User avatar
jman
 
Posts: 123
Joined: Fri Jul 20, 2007 7:07 pm
Location: Ontario, Canada
Score: 2 Give a positive score

Re: how to make a credit scrolling reel

Postby Spidy » Fri Dec 07, 2007 11:00 am

yeah nice question anyone answer plz! :mrgreen:
Image
VOTE FOR MY SIGNATURE PLEASE.......THANK YOU
User avatar
Spidy
 
Posts: 935
Joined: Tue Aug 14, 2007 1:28 pm
Location: http://www.inatonibai.com
Score: 38 Give a positive score

Re: how to make a credit scrolling reel

Postby tufif » Fri Dec 07, 2007 5:48 pm

You mean like at the end of a movie? The easiest way would be to have the credits stand still and move the view over it at a slow rate. I suppose you could also have the credits move past the view.
tufif
 
Posts: 22
Joined: Sat Oct 13, 2007 3:00 am
Score: 2 Give a positive score

Re: how to make a credit scrolling reel

Postby j2graves » Sat Dec 08, 2007 2:02 pm

yeah maybe you could make the entire credits and write in script editor

Code: Select all
y = y -1;


or something like that
No games to my name...
User avatar
j2graves
 
Posts: 1302
Joined: Thu Aug 16, 2007 6:42 pm
Location: on the other side of infinity
Score: 19 Give a positive score

Re: how to make a credit scrolling reel

Postby pyrometal » Sat Dec 08, 2007 7:34 pm

Here are some fairly easy steps for standard scrolling credits:

- Create a text Actor, type all your credits in it (organize it and make it clear enough)

- Set it below the view actor's position

- Create a conditional structure which defines when the credits must reel

- I advise this code in the Draw Actor event:

Code: Select all
if (view.x == "coordinate A" && view.y == "coordinate B")
{
    y-=2;
}

else
{
    x= "Original x coordinate";
    y= "Original y coordinate";
}


** Note that this code uses Draw actor which is some what ineffective, but it will do what you want, it reels the credits only when view's position is placed exactly where wanted, otherwise they will not and the position of your credits actor will return to its original position. Also note that the quotes "" are meant to be replaced by actual values.**

I hope this helps you a little. Personally I don't use scrolling credits because there isn't enough to put in them to make them worth it. Instead, I use a page format with all the info. It's more efficient and clean in my case.

That's all for now!

-- Pyrometal --
SPRITE WARRIOR:
Free, open-source & crossplatform pixel art editor (currently under construction).
User avatar
pyrometal
 
Posts: 706
Joined: Wed Nov 28, 2007 4:07 am
Location: Kingston, ON, Canada
Score: 86 Give a positive score

Re: how to make a credit scrolling reel

Postby j2graves » Sun Dec 09, 2007 12:33 pm

sounds useful.
No games to my name...
User avatar
j2graves
 
Posts: 1302
Joined: Thu Aug 16, 2007 6:42 pm
Location: on the other side of infinity
Score: 19 Give a positive score

Re: how to make a credit scrolling reel

Postby Spidy » Sun Dec 09, 2007 4:42 pm

NICE SCRIPT thanks
Image
VOTE FOR MY SIGNATURE PLEASE.......THANK YOU
User avatar
Spidy
 
Posts: 935
Joined: Tue Aug 14, 2007 1:28 pm
Location: http://www.inatonibai.com
Score: 38 Give a positive score

Re: how to make a credit scrolling reel

Postby Bee-Ant » Tue Dec 11, 2007 8:51 am

Make an actor called "CREDIT" make it as text actor...put your credit text there...
in Draw actor>ScriptEditor>y-=1; or y-=2; whatever... :D
User avatar
Bee-Ant
 
Posts: 3723
Joined: Wed Apr 11, 2007 12:05 pm
Location: http://www.instagram.com/bee_ant
Score: 210 Give a positive score

Re: how to make a credit scrolling reel

Postby Spidy » Tue Dec 11, 2007 10:01 am

Bee-Ant wrote:Make an actor called "CREDIT" make it as text actor...put your credit text there...
in Draw actor>ScriptEditor>y-=1; or y-=2; whatever... :D


hmm..this is easy
Image
VOTE FOR MY SIGNATURE PLEASE.......THANK YOU
User avatar
Spidy
 
Posts: 935
Joined: Tue Aug 14, 2007 1:28 pm
Location: http://www.inatonibai.com
Score: 38 Give a positive score

Re: how to make a credit scrolling reel

Postby Bee-Ant » Tue Dec 11, 2007 10:07 am

Very easy...
And you dont know how to make the easy thing like this??? :P
User avatar
Bee-Ant
 
Posts: 3723
Joined: Wed Apr 11, 2007 12:05 pm
Location: http://www.instagram.com/bee_ant
Score: 210 Give a positive score

Re: how to make a credit scrolling reel

Postby Spidy » Tue Dec 11, 2007 10:10 am

Bee-Ant wrote:Very easy...
And you dont know how to make the easy thing like this??? :P

hey!cuz pyrometal has a very hard script and your easy script :twisted:
Image
VOTE FOR MY SIGNATURE PLEASE.......THANK YOU
User avatar
Spidy
 
Posts: 935
Joined: Tue Aug 14, 2007 1:28 pm
Location: http://www.inatonibai.com
Score: 38 Give a positive score

Re: how to make a credit scrolling reel

Postby Bee-Ant » Tue Dec 11, 2007 11:13 am

Hahah...I successed to get out your emotion... :lol:
User avatar
Bee-Ant
 
Posts: 3723
Joined: Wed Apr 11, 2007 12:05 pm
Location: http://www.instagram.com/bee_ant
Score: 210 Give a positive score

Re: how to make a credit scrolling reel

Postby Spidy » Tue Dec 11, 2007 4:20 pm

:evil: :twisted: :evil: :twisted: :evil: :twisted: :evil: :twisted:

ahh...ahhhhhhhhhhh the devil power inside my body ahhhhhhhhhhhhh :( :evil: :twisted:

HAHAHA NOW I TAKE MY REVENGE FROM U BEE-ANT
Image
VOTE FOR MY SIGNATURE PLEASE.......THANK YOU
User avatar
Spidy
 
Posts: 935
Joined: Tue Aug 14, 2007 1:28 pm
Location: http://www.inatonibai.com
Score: 38 Give a positive score

Re: how to make a credit scrolling reel

Postby pyrometal » Tue Dec 11, 2007 4:31 pm

lol, my script only takes account that credits should reel only when they need to... isn't that simple to? Please say yes!
SPRITE WARRIOR:
Free, open-source & crossplatform pixel art editor (currently under construction).
User avatar
pyrometal
 
Posts: 706
Joined: Wed Nov 28, 2007 4:07 am
Location: Kingston, ON, Canada
Score: 86 Give a positive score

Re: how to make a credit scrolling reel

Postby Bee-Ant » Wed Dec 12, 2007 10:11 am

YES...satisfied???
User avatar
Bee-Ant
 
Posts: 3723
Joined: Wed Apr 11, 2007 12:05 pm
Location: http://www.instagram.com/bee_ant
Score: 210 Give a positive score

Next

Return to Advanced Topics

Who is online

Users browsing this forum: No registered users and 1 guest