added intro background image, changed Mr.Tree to Grumbel's version
[supertux.git] / data / levels / test / default.nut
1 /* Default functions for the whole levelset */
2
3 function intro()
4 {
5   Tux.deactivate();
6   Tux.set_visible(false);
7   DisplayEffect.sixteen_to_nine(0);
8   DisplayEffect.fade_in(2);
9   Camera.scroll_to(0, 945, 15);
10   // Sound.play_music("music/intro.ogg");
11   wait(16);
12   Camera.scroll_to(3200, 945, 19);
13   wait(10);
14   Text.set_text("SuperTux\n(Replace this with the title logo)");
15   Text.fade_in(2);
16   wait(5);
17   Text.fade_out(2);      
18   wait(4);
19
20   wait(20);
21   Level.finish();
22 }
23