Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Few questions
PutraenusAlivius Offline
Posting Freak

Posts: 4,713
Threads: 75
Joined: Dec 2012
Reputation: 119
#18
RE: Few questions

(04-30-2013, 06:09 AM)Essen Wrote:
(04-29-2013, 09:17 PM)BeeKayK Wrote: Sure Smile What kind of effects are we talking about?

Something like, how to explain it, basically, character would remember some scenes of what he went through, like it was suggested by Chaser earlier. It woule be his memories. I would need some suiting colors and all that.

Also, how to do these cutscenes you talk about? Isn't it needed to make new map and place all the places I want the character to go through in it to avoid loading of the maps?

This is required to make the screen albeit dark red. For black and white, you need a FC if I'm not mistaken.
PHP Code: (Select All)
FadeSepiaColorTo(float afAmountfloat afSpeed); 
afAmount - Intensity (Default is 0)
afSpeed - Time in seconds until it's full effect.

--
You don't have to make new maps. Just create new areas in a level and make the player to teleport to that area. Here's how.
Please note that they have to be called first.

PHP Code: (Select All)
void OnStart()
{
///Add Command here
}

void //FUNCTION//(//string//)
{
FadeOut(0.8f);
SetPlayerActive(false);
TeleportPlayer("StartPos"); //StartPos is the starting position in the area. It's the PlayerStartArea.
AddTimer(""3.0f"FadeIn"); //Change 3.0f to how long you want the unconcusf to endure. Definitely didn't said that one right.
}

void FadeIn(string &in asTimer)
{
FadeIn(1.0f);
//Insert the Sepia thing here.


"Veni, vidi, vici."
"I came, I saw, I conquered."
04-30-2013, 06:57 AM
Find


Messages In This Thread
Few questions - by Essen - 04-27-2013, 04:39 PM
RE: Few questions - by OriginalUsername - 04-27-2013, 06:15 PM
RE: Few questions - by FlawlessHappiness - 04-27-2013, 10:51 PM
RE: Few questions - by Marshall2906 - 04-28-2013, 01:40 AM
RE: Few questions - by PutraenusAlivius - 04-28-2013, 02:34 AM
RE: Few questions - by Essen - 04-28-2013, 03:18 AM
RE: Few questions - by PutraenusAlivius - 04-28-2013, 03:29 AM
RE: Few questions - by Tomato Cat - 04-28-2013, 05:36 AM
RE: Few questions - by The chaser - 04-28-2013, 11:36 AM
RE: Few questions - by Essen - 04-28-2013, 01:27 PM
RE: Few questions - by Essen - 04-29-2013, 03:06 PM
RE: Few questions - by FlawlessHappiness - 04-29-2013, 04:56 PM
RE: Few questions - by The chaser - 04-29-2013, 05:04 PM
RE: Few questions - by Essen - 04-29-2013, 05:56 PM
RE: Few questions - by The chaser - 04-29-2013, 07:52 PM
RE: Few questions - by FlawlessHappiness - 04-29-2013, 09:17 PM
RE: Few questions - by Essen - 04-30-2013, 06:09 AM
RE: Few questions - by PutraenusAlivius - 04-30-2013, 06:57 AM
RE: Few questions - by Essen - 05-01-2013, 08:16 AM
RE: Few questions - by PutraenusAlivius - 05-01-2013, 11:34 AM
RE: Few questions - by FlawlessHappiness - 05-01-2013, 12:09 PM
RE: Few questions - by FlawlessHappiness - 04-30-2013, 02:51 PM
RE: Few questions - by The chaser - 05-01-2013, 11:29 AM
RE: Few questions - by Essen - 05-01-2013, 12:41 PM
RE: Few questions - by The chaser - 05-01-2013, 02:01 PM
RE: Few questions - by FlawlessHappiness - 05-01-2013, 02:16 PM
RE: Few questions - by Essen - 05-01-2013, 04:23 PM
RE: Few questions - by The chaser - 05-01-2013, 09:48 PM
RE: Few questions - by Essen - 05-02-2013, 04:51 PM
RE: Few questions - by The chaser - 05-03-2013, 01:22 PM
RE: Few questions - by Essen - 05-04-2013, 01:46 AM



Users browsing this thread: 1 Guest(s)