added radio image to intro
[supertux.git] / data / levels / test / default.nut
1 /* Default functions for the whole levelset */
2
3 function intro()
4 {
5   SUPERTUX.set_action("stand-right");  
6   PENNY.set_action("stand-left");
7   Tux.deactivate();
8   Tux.set_visible(false);
9   DisplayEffect.sixteen_to_nine(0);
10   DisplayEffect.fade_in(2);
11   Camera.scroll_to(0, 945, 15);
12   // Sound.play_music("music/intro.ogg");
13   wait(16);
14   SUPERTUX.set_velocity(50,0);
15   Camera.scroll_to(3000, 945, 18);
16   wait(10);
17   Text.set_text("SuperTux\n(Replace this with the title logo)");
18   Text.fade_in(2);
19   wait(5);
20   Text.fade_out(2);
21   wait(6);
22   SUPERTUX.set_velocity(0,0);
23   wait(10);
24   Level.finish();
25 }
26