PDA

View Full Version : Heck, i promised to leave you alone but i need some cog help...


CaveDemon
06-20-2002, 01:26 PM
Okay, i've asked this before, and i have done it before, so i know it's not impossible to do.

This is for a cutscene.

Very simple. I need someone to tell me how to make the cutscene start with black screen, and make the black fade like in movies. thank you http://forums.massassi.net/html/smile.gif

------------------
Uh-uh. I know what you're thinking. Did he fire six shots or only five? Well, to tell you the truth, in all this excitement, I've kind of lost track myself. But being this is a .44 Magnum, the most powerful handgun in the world, and would blow your head clean off, you've got to ask yourself one question: Do I feel lucky? Well do ya, punk?

SaberMaster
06-20-2002, 01:44 PM
light = 0;
while(light < 1)
{
light = light + 0.01;
effect = NewColorEffect(0, 0, 0, 0, 0, 0, 0, 0, 0, light);
Sleep(0.01);
FreeColorEffect(effect);
}


There you go. http://forums.massassi.net/html/wink.gif

------------------
Author of the JK DataMaster (http://www.geocities.com/sabersdomain/fileframe.html), Parsec (http://www.geocities.com/sabersdomain/fileframe.html), and the EditPlus Cog Files (http://www.geocities.com/sabersdomain/fileframe.html).
Visit Saber's Domain (http://www.geocities.com/sabersdomain).

CaveDemon
06-20-2002, 02:04 PM
thank you... http://forums.massassi.net/html/smile.gif

------------------
Uh-uh. I know what you're thinking. Did he fire six shots or only five? Well, to tell you the truth, in all this excitement, I've kind of lost track myself. But being this is a .44 Magnum, the most powerful handgun in the world, and would blow your head clean off, you've got to ask yourself one question: Do I feel lucky? Well do ya, punk?

gbk
06-20-2002, 07:28 PM
http://forums.massassi.net/html/eek.gif Ive never thought of that method!

------------------
I used to believe that we only want what we can't have. I was wrong. The truth is, the wonderful truth is, we only want what we think we can't have.

JK editing resources (http://www.tbns.net/GBK/ol/index.htm).

[This message has been edited by GBK (edited June 20, 2002).]