Shoot Out: Linux source demo released


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Shoot Out: Linux source demo released
# 1  
Old 11-18-2008
Shoot Out: Linux source demo released

Shoot out is a arcade shooter similar to galaga or space invaders using SDL.
ImageImage

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Flash And Fade DEMO For Mac OSX 10.7.5, (And Linux?).

This is an AT A GLANCE shell DEMO that does:- 1) 10 centred greyscale fades without warning beeps. 2) 5 centred yellow "WARNING!" flashes with beeps every ON state. 3) 5 FULL widowed red "DANGER!!!" flashes with beeps in the ON and OFF states. It assumes that the warning bell is enabled... (0 Replies)
Discussion started by: wisecracker
0 Replies

2. AIX

cpu used more than 80% how will u trouble shoot?

cpu used more than 80% how will u trouble shoot? (1 Reply)
Discussion started by: ramraj731
1 Replies
Login or Register to Ask a Question
SDL.blitSurface(3kaya)					       Kaya module reference					    SDL.blitSurface(3kaya)

NAME
SDL::blitSurface - Copy from one surface to another SYNOPSIS
Void blitSurface( SDLSurface src, Rect srcrect, SDLSurface dest, Rect destrect ) ARGUMENTS
src The source surface srcrect The portion of the source surface to copy dest The destination surface destrect The location on the destination surface to copy to (the width and height of this rectangle are ignored) DESCRIPTION
Copy a rectangle of pixels from one surface to another, for example from a loaded image to the screen. screen = newSurface(640,480,BPP24,false); pic = loadSurface("mypic.bmp"); blitSurface(pic,Rect(0,0,40,40),screen,Rect(200,200,px,py)); updateScreen(screen); If you are copying to the screen surface, remember that these updates will not be displayed until you call SDL.updateScreen(3kaya) AUTHORS
Kaya standard library by Edwin Brady, Chris Morris and others (kaya@kayalang.org). For further information see http://kayalang.org/ LICENSE
The Kaya standard library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (version 2.1 or any later version) as published by the Free Software Foundation. RELATED
SDL.Rect(3kaya) SDL.loadSurface(3kaya) SDL.newSurface(3kaya) SDL.updateScreen(3kaya) Kaya October 2012 SDL.blitSurface(3kaya)