Titoli "iniziali"

« Older   Newer »
 
  Share  
.
  1. Kazoo_74
     
    .
    Avatar

    La mia fama mi precede!

    Group
    Member
    Posts
    6,231
    Location
    Non č importante la provenienza, ma la destinazione!

    Status
    Offline
    Non sono filmati, ma una room apposita che mostra in successione due sprites.

    Ecco il codice che ho usato:

    CODICE
    function room_Load()
    {
     mouse.Visible = false; //Mouse invisibile
    }

    function room_AfterFadeIn()
    {
     Overlay* splash1Overlay = Overlay.CreateGraphical(0, 0, 1, false); //Primo Splash Screen
     FadeOut(64);
     Wait(1);
     FadeIn(1);
     Wait(40);
     FadeOut(1);
     splash1Overlay.Remove();
     Wait(20);
     Overlay* splash2Overlay = Overlay.CreateGraphical(0, 0, 2, false); //Secondo Splash Screen
     Wait(1);
     FadeIn(1);
     Wait(40);
     FadeOut(1);
     splash2Overlay.Remove();
     Wait(40);
     player.ChangeRoom(1, 4, 510); //Vai al menů principale
    }
     
    .
40 replies since 18/3/2006, 18:14   1168 views
  Share  
.