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


Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Do you know the feeling
Simpanra Offline
Senior Member

Posts: 314
Threads: 28
Joined: Mar 2011
Reputation: 0
#8
RE: Do you know the feeling

yeah, here use this,
void beginStory(string &in asTimer)
{
ChangePlayerStateToNormal();
SetPlayerActive(true);
FadePlayerRollTo(0, 33, 33); // Change all settings to defaults
FadeRadialBlurTo(0.0, 1);
FadeSepiaColorTo(0, 4);
SetPlayerCrouching(false);
FadeImageTrailTo(0,1);
}

void OnEnter()
{
FadeOut(0); // Instantly fades the screen out. (Good for starting the game)
FadeIn(5); // Amount of seconds the fade in takes
FadeImageTrailTo(2, 2);
FadeSepiaColorTo(100, 4);
SetPlayerActive(false);
FadePlayerRollTo(-90, 300, 300); // "Tilts" the players head
FadeRadialBlurTo(0.15, 2);
SetPlayerCrouching(true); // Simulates being on the ground
AddTimer("trig1", 11.0f, "beginStory");

Put it in your void OnStart()

and then put the second bit (starting with void OnEnter) in your voidOnEnter =)

Hope this helps
05-08-2011, 06:59 PM
Find


Messages In This Thread
Do you know the feeling - by Sennep - 05-07-2011, 07:07 PM
RE: Do you know the feeling - by Simpanra - 05-07-2011, 07:15 PM
RE: Do you know the feeling - by Sennep - 05-07-2011, 07:24 PM
RE: Do you know the feeling - by Simpanra - 05-07-2011, 07:27 PM
RE: Do you know the feeling - by Sennep - 05-07-2011, 07:30 PM
RE: Do you know the feeling - by Simpanra - 05-07-2011, 07:40 PM
RE: Do you know the feeling - by Sennep - 05-08-2011, 06:55 PM
RE: Do you know the feeling - by Simpanra - 05-08-2011, 06:59 PM
RE: Do you know the feeling - by Sennep - 05-08-2011, 07:20 PM
RE: Do you know the feeling - by Simpanra - 05-08-2011, 07:24 PM
RE: Do you know the feeling - by Sennep - 05-08-2011, 07:26 PM
RE: Do you know the feeling - by Simpanra - 05-08-2011, 07:35 PM



Users browsing this thread: 1 Guest(s)