A "What... How?" Problem.. Please help someone
Posted: Tue Dec 08, 2009 7:11 pm
OMFG... Okay I have this code
Now, shouldn't that mean that... blackbg should be in front of everything else. Well for some unknown reason it's not in front of 2 text actors and it's very annoying because the text actors you can see bouncing around the screen for about 2 frames because the view moved, but this is kind of annoying that I cant have it fade out to the text
Making simple effects is so hard...
- Code: Select all
if (newgame == 2)
{
ChangeZDepth("blackbg", 9.000000);
blackbg.transp-=.02;
musicvol-=.02;
enable = 0;
newcount++;
menu = 0;
if (newcount == 57)
{
MoveTo("view", 0.000000, 0.000000, 1000.000000, "viewer", "");
DestroyActor("stars1");
DestroyActor("stars2");
new2 = 1;
}
if (new2 == 1)
{
blackbg.transp += .02;
}
if (newcount == 100)
{
newgame = 0;
}
}
Now, shouldn't that mean that... blackbg should be in front of everything else. Well for some unknown reason it's not in front of 2 text actors and it's very annoying because the text actors you can see bouncing around the screen for about 2 frames because the view moved, but this is kind of annoying that I cant have it fade out to the text
Making simple effects is so hard...