Development/Tutorials/Games/kglengine/kglengine-simpleBox

From KDE TechBase
Revision as of 12:47, 23 February 2009 by Dridk (talk | contribs)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
KGLEngine tutorial 1
Tutorial Series   KGLEngine2d developement
Prerequisites   None
What's Next   Nothing at the moment
Further Reading   KGLEngine2d's code

Abstract

KGLengine is a powerfull 2d games engine, for people who want to create hight level of games. Instead QGraphicsView system, KGLEngine use all power of openGL and Eigen mathematic library. Now you will be able to create fullscreen games, particles effects for make smoke or explosion, shadow effects, collision detection with a lot of items, and as soon as possible to use Shaders effects.

Installation

First , be sure you have libQt4-dev, libQt4-openGL-dev, and kde4-lib devel. download KGLEngine source from svn : [code]svn co svn://anonsvn.kde.org/home/kde/trunk/playground/games/KGLEngine[/code]

cd kglengine mkdir build cd build cmake .. make; make install;

First programm