LOVE 0.1.1 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News LOVE 0.1.1 (Default branch)
# 1  
Old 01-24-2008
LOVE 0.1.1 (Default branch)

LOVE is a 2D game engine that utilizes the Luascripting language to create games. It relies onOpenGL graphics and the SDL interface library toallow for cross-platform implementation and is anall-encompassing gaming environment for thedevelopment and enjoyment of 2D games.License: zlib/libpng LicenseChanges:
This release supports image loading and rendering, sound loading and playing, font loading and rendering, Lua-scriptable games, config files, loading from archive files, and basic devices such as the keyboard, mouse, display, timer, etc.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Heart OS and Love OS?

Hi everyone. Our professor in Operating Systems gave us a research work about the Heart OS and Love OS. We were told that they were old operating systems from UNIX but I couldn't find any information about them from google. I hope someone here could point me to the right direction. Thanks! (7 Replies)
Discussion started by: jogonjr
7 Replies
Login or Register to Ask a Question
SDLx::FPS(3pm)						User Contributed Perl Documentation					    SDLx::FPS(3pm)

NAME
SDLx::FPS - a more convenient way to set a framerate SYNOPSIS
use SDLx::FPS; my $fps = SDLx::FPS->new(fps => 60); while(1) { # Main game loop # Do game related stuff $fps->delay; } DESCRIPTION
SDLx::FPS simplifies the task of giving your game a framerate. Basically, it combines the methods of "SDL::GFX::Framerate" and "SDL::GFX::FPSManager" into a single module. Use it to delay the main loop to keep it at a specified framerate. METHODS
new my $fps = SDLx::FPS->new( fps => 30 ); No arguments are required, if no "fps" is specified, the default FPS is 30. set $fps->set($new_framerate); Same as "SDL::GFX::Framerate::set". Set the new desired framerate. get Same as "SDL::GFX::Framerate::get". Get the currently set framerate. delay Same as "SDL::GFX::Framerate::delay". Generate a delay to accommodate currently set framerate. Call once in the graphics/rendering loop. If the computer cannot keep up with the rate (i.e. drawing too slow), the delay is 0 and the delay interpolation is reset. framecount Return the "framecount". rateticks Return the "rateticks". lastticks Return the "lastticks". rate Return the "rate". AUTHORS
See "AUTHORS" in SDL. SEE ALSO
SDL::GFX::Framerate, SDL::GFX::FPSManager perl v5.14.2 2012-05-28 SDLx::FPS(3pm)