New in Qt game development...
-
Hi everyone...
I'm new to this Qt environment and game development in Qt..
Can anyone give me some basic idea about starting with Qt in game development
Some tutorials to start?Thank you....
-
Maybe you can elaborate what tutorials do you want? gamedev is not a small topic. Are you talking about opengl or 2d drawing? etc.
Also I think you need first to go throught Qt manuals and tutorials. -
yeah... I have some basic knowledge in OpenGL , and I need to learn about integrating OpenGL libraries with Qt... do we need to edit project setting and locate opengl library files like we do for Visual Studio or the OpenGL libraries comes integrated with the Qt IDE.
Where can I find the Qt manuals and tutorials. Some basic tutorials in this site shows loading error.
-
If you want to use OpenGl check this "documentation":http://doc.trolltech.com/latest/qtopengl.html#details You can find OpenGL examples from here: http://doc.trolltech.com/4.7-snapshot/examples-opengl.html
But if you are developing 2d game, you could also consider QML "(Qt Quick)":http://doc.trolltech.com/latest/qtquick.html
-
I'm Getting this warnings in my first application... I didn't code much... the main.cpp is
@#include <QtGui>int main(int argc, char *argv[])
{
QApplication a(argc, argv);return a.exec();
}@
The system cannot execute the specified program.
The system cannot execute the specified program.
WARNING: c:\NokiaQtSDK\Simulator\Qt\msvc2005\mkspecs\features\mobility.prf:1: Unescaped backslashes are deprecated.
WARNING: c:\NokiaQtSDK\Simulator\Qt\msvc2005\mkspecs\features\mobility.prf:1: Unescaped backslashes are deprecated.
WARNING: c:\NokiaQtSDK\Simulator\Qt\msvc2005\lib\qtmaind.prl:1: Unescaped backslashes are deprecated.
WARNING: c:\NokiaQtSDK\Simulator\Qt\msvc2005\lib\QtGuid.prl:1: Unescaped backslashes are deprecated.
WARNING: c:\NokiaQtSDK\Simulator\Qt\msvc2005\lib\QtCored.prl:1: Unescaped backslashes are deprecated.
WARNING: c:\NokiaQtSDK\Simulator\Qt\msvc2005\lib\qtmaind.prl:1: Unescaped backslashes are deprecated.
WARNING: c:\NokiaQtSDK\Simulator\Qt\msvc2005\mkspecs\features\mobility.prf:1: Unescaped backslashes are deprecated.
WARNING: c:\NokiaQtSDK\Simulator\Qt\msvc2005\lib\qtmain.prl:1: Unescaped backslashes are deprecated.
WARNING: c:\NokiaQtSDK\Simulator\Qt\msvc2005\lib\QtGui.prl:1: Unescaped backslashes are deprecated.
WARNING: c:\NokiaQtSDK\Simulator\Qt\msvc2005\lib\QtCore.prl:1: Unescaped backslashes are deprecated.
WARNING: c:\NokiaQtSDK\Simulator\Qt\msvc2005\lib\qtmain.prl:1: Unescaped backslashes are deprecated.
-
Corrected it... I've just re-created the project with only one simulator selected....