Frictional Games Forum (read-only)

Full Version: onEnter does nothing? [SOLVED]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey there, I want a room in my story to be visited multiple times. Each time you visit, I want a simple thing to happen:

Code:
void onEnter()
{
    PlayMusic("ending_daniel.ogg",false, 100, 1, 1, false);
    FadeSepiaColorTo(1, 2);
}

Why in the hell would that not work? And don't say put it in void onStart, because that only runs once.
Because its OnEnter() with a capital O, not onEnter().
Try it.
[Image: facepalm.jpg]