Computer Science Canada dissolve slide fade |
Author: | beedub [ Thu May 08, 2003 9:22 pm ] |
Post subject: | dissolve slide fade |
hey all i was thinking, when i change a scene in a program, i can make a dissolve or a cool scene movement. I was wondering how would i do that... locate,randint? |
Author: | Tony [ Thu May 08, 2003 10:24 pm ] | ||
Post subject: | |||
randomly color the screen in. It will be more "dissolving" if you use Draw.Dot instead... |
Author: | Homer_simpson [ Thu May 08, 2003 10:36 pm ] | ||
Post subject: | |||
i think u forgot to put this in your loop
|
Author: | Tony [ Thu May 08, 2003 10:38 pm ] | ||
Post subject: | |||
but no, I wanted color to remain black so its consistant. If you keep on changing the colours though, you can cause some people to have siezures (probably bad spelling) Fixed it. -Asok |
Author: | beedub [ Sun May 11, 2003 9:31 pm ] |
Post subject: | |
ty soo much.. thats egcactly what i wanted |
Author: | beedub [ Thu May 15, 2003 9:07 pm ] |
Post subject: | |
umm.. one quick question.. srry if this is newbish but.. what would the perimeters be for the drawdot ??... like drawdot (320,200,black)... or what? |
Author: | void [ Thu May 15, 2003 9:12 pm ] |
Post subject: | |
drawdot (x,y,color)...ye...u were rite... |
Author: | beedub [ Thu May 15, 2003 9:13 pm ] |
Post subject: | |
i know that.. but to correctly make the slide fade look proper... then what would the perimeters be?..like the coordinates... and void what school you go to?? |
Author: | beedub [ Thu May 15, 2003 9:31 pm ] | ||
Post subject: | |||
nvm... i found out... this is what my final code is
thanks for the help;) |
Author: | Homer_simpson [ Thu May 15, 2003 10:05 pm ] | ||
Post subject: | |||
was bored tried to write something short...
|
Author: | beedub [ Thu May 15, 2003 10:08 pm ] |
Post subject: | |
thats nice... the only problem is... it takes to long to end... |
Author: | Martin [ Thu May 15, 2003 10:17 pm ] |
Post subject: | |
Whatchya making, beedub? |
Author: | beedub [ Fri May 16, 2003 5:17 pm ] |
Post subject: | |
when i chage scenes in a program i want it to look cool... and make it just like a quick change of scene... so i make it dissolve.. |
Author: | Homer_simpson [ Fri May 16, 2003 6:23 pm ] | ||
Post subject: | |||
this another fade to white effect...
|
Author: | Homer_simpson [ Fri May 16, 2003 6:35 pm ] | ||
Post subject: | |||
this is another effect it fades the black screen to yer image...
|
Author: | beedub [ Fri May 16, 2003 8:57 pm ] |
Post subject: | |
ty homer... that last one is exactly wat i wanted.. the one i was doing didnt fade into my image... it when into a clear screen then my image... thanks alot... |
Author: | DiamondDev [ Mon Jun 16, 2003 8:45 pm ] |
Post subject: | Fade to black? |
I know this is an old thread, but this is exactly what i need....cept i need it to fade to black.......any ideas? |
Author: | PHP God [ Tue Jun 17, 2003 12:46 pm ] | ||
Post subject: | |||
you guys are lame. Lets use some arrays. Here's my idea thus far, its not working though.
basically, i have 2 arrays of boolean. when a dot gets colored in, its x position is TRUE, if it is uncolored it is FALSE. if an x position is already true, it will not be colored, if it is false color it. Then you check to see that all the dots in the row have been colored, if that is true then move on to the next row. I totally screwed that code up but that is my idea. I think I can make it now but my CPU class is almost over. my GR9 teacher can't help me because it is gr 11 stuff and she has to help all the newbs with MS Word |
Author: | 85882 [ Tue Jun 17, 2003 2:30 pm ] |
Post subject: | |
That's cool. Thanks! |
Author: | DiamondDev [ Tue Jun 17, 2003 5:52 pm ] |
Post subject: | Thanks |
Hey, Thanks for the code, even though you are rude. Should help me with the game I'm making...probably post it here when I'm finished and my Comp science course is over..seeing that its a final project........side scrollers are always fun to do...except its not a very practicle way of doing it when your screen is 800X 600 Answer to my own question Modify Homer's code slightly stupid me..... for ii : 1 .. 255 by 1 RGB.SetColor (black, ii, ii, ii) colorback (black) cls delay (10) end for |