Making Credits
Author |
Message |
BigBear
|
Posted: Fri Feb 01, 2008 8:45 pm Post subject: Making Credits |
|
|
I am wondering if someone can help me get started making credits. I was thinking makeing text move by changing the variable y then when y = maxy then y:=o and draw another group of words that move by the variable y. Any Ideas
|
|
|
|
|
|
Sponsor Sponsor
|
|
|
HeavenAgain
|
Posted: Fri Feb 01, 2008 9:03 pm Post subject: RE:Making Credits |
|
|
draw them all on the screen where you can see them first, then add like 1000 to y cord, and now do a for-loop minus the y cord, and voola simple and stupid
|
|
|
|
|
|
syntax_error
|
Posted: Fri Feb 01, 2008 9:19 pm Post subject: Re: Making Credits |
|
|
even better a cheap trick write out your credits on paint or something make it fancy as you want save it as a jpeg
then jsut move the picture up nad down the screen soo much less coding
and i think would look better?
|
|
|
|
|
|
ericfourfour
|
Posted: Fri Feb 01, 2008 10:16 pm Post subject: Re: Making Credits |
|
|
The best way would be to make a procedure that takes one line, as a string and scrolls it all the way down the screen. It will make programming your credits much easier.
The procedure would look sort-of like this:
Turing: | proc scroll (line : string)
% Scroll line string down the screen.
end scroll |
Then all you would have to do is a series of calls for your credits:
Turing: | scroll ("Programmer - BigBear")
scroll ("some other task - person's name") |
You will also have to find where to place the text so it is centre. Just some basic math (mean/average).
If you make it that simple, you can easily implement loading the credits from a file as well.
|
|
|
|
|
|
BigBear
|
Posted: Sun Feb 10, 2008 12:49 pm Post subject: Re: Making Credits |
|
|
They were all great suggestions almost as if you guys had done it before.
I ended up just making it in paint but had to make multiple txt boxes then changed to to white writing and had to either change each pixel white. so I ended up doing some simple code in turing to Font.Draw my text then took a screen shot and pasted in into another paint cut the text out and pasted it into my credits bitmap.
I wondering why my teacher wanted credits. This is not my Ego. lol
Anyways here is my finished product thanks alot.
Description: |
Bitmap of credits used in littles Program |
|
Filesize: |
233.42 KB |
Viewed: |
90 Time(s) |
|
Description: |
Code for credits taken from my Game |
|
Download |
Filename: |
Unnamed.t |
Filesize: |
273 Bytes |
Downloaded: |
88 Time(s) |
|
|
|
|
|
|
octopi
|
Posted: Sun Feb 10, 2008 9:49 pm Post subject: Re: Making Credits |
|
|
I think you mean Mozilla, not Moxilla
|
|
|
|
|
|
|
|