Results 1 to 4 of 4

Thread: Gif Images In Lua

                  
   
  1. #1
    DCEmu Coder splodger15's Avatar
    Join Date
    Jun 2006
    Location
    London
    Age
    34
    Posts
    4,123
    Rep Power
    95

    Default Gif Images In Lua

    I have a Gif image but is it possible to use that in Lua. As i would like it used as just a splash screen with press start to continue on it. Here is the image i would like to use.

    Thanks

    PSN ID: splodger15

  2. #2
    GP2X Coder/Moderator
    Join Date
    Jan 2006
    Posts
    1,678
    Rep Power
    87

    Default

    No you can't. LuaPlayer doesn't support animated GIF files since it is a closed format now.

  3. #3
    DCEmu Legend gunntims0103's Avatar
    Join Date
    May 2006
    Location
    Brentwood, NY
    Age
    34
    Posts
    2,976
    Rep Power
    112

    Default

    I did something like that using 2 images in soras adventure, the code went like this

    Code:
    --load 2 images--
    
    Splash1 = Image.load("backgrounds/intro1.png")
    Splash2 = Image.load("backgrounds/intro2.png")
    
    function images()   ------Right Animation
    Tim = Tim + 1
         
     	if Tim>= 100 or Tim<=0  then
        Tim = 0
      	end         
    			                 
            if Tim==5 then
            Splash = Splash1
            end
            
            if Tim==50 then
            Splash = Splash2
            end
            end
    -----This code loads the splash screen, im using 2 images------
    
    while true do
    
    pad = Controls.read()
    
    images()
    
    
    if pad:start() then
    loadA()
    end
    
    screen:blit(0,0,Splash)
    screen.flip()
    screen.waitVblankStart()
    
    end
    This is used to do a 2 image animation start screen....

  4. #4
    DCEmu Coder splodger15's Avatar
    Join Date
    Jun 2006
    Location
    London
    Age
    34
    Posts
    4,123
    Rep Power
    95

    Default

    Ok thanks for the help Gunn and yaustar

    :thumbup:

    PSN ID: splodger15

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •