Search found 7 matches
- Tue Dec 23, 2008 11:14 am
- Forum: Project Announcements
- Topic: IrrNewt irrlicht\newton framework >> SVN access
- Replies: 432
- Views: 132582
- Tue Dec 23, 2008 5:20 am
- Forum: Project Announcements
- Topic: IrrNewt irrlicht\newton framework >> SVN access
- Replies: 432
- Views: 132582
I'm getting quite a few warnings/errors here with the IrrNewt 1.5 version in Visual Studio 2008 when I try to compile any of the examples. 1>c:\users\jjjohan\desktop\irrnewt\include\hidden.hpp(186) : warning C4244: 'argument' : conversion from 'irr::f64' to 'irr::f32', possible loss of data 1>c:\use...
- Tue Dec 23, 2008 3:54 am
- Forum: Beginners Help
- Topic: VS2008 setup problems
- Replies: 2
- Views: 271
Yes, I'm using a tutorial code as base. It includes:
Hang on, they're commented..
Yay! Thanks, I can't believe I didn't notice that..
Code: Select all
//#ifdef _MSC_VER
//#pragma comment(lib, "Irrlicht.lib")
//#endif
Yay! Thanks, I can't believe I didn't notice that..
- Tue Dec 23, 2008 3:39 am
- Forum: Beginners Help
- Topic: VS2008 setup problems
- Replies: 2
- Views: 271
VS2008 setup problems
I'm trying to use Visual Studio 2008 to compile my Irrlicht projects but I'm having trouble including the necessary header files as I seem to be getting a linker error: 1>main.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) class irr::IrrlichtDevice * __cdecl irr::createD...
- Thu Dec 18, 2008 11:56 pm
- Forum: Beginners Help
- Topic: Changing a texture's height map value in realtime?
- Replies: 1
- Views: 236
Changing a texture's height map value in realtime?
I've really liked the SpecialFX tutorial example and what it does with parallax mapping, and i was wondering if it was possible to change the height map value in realtime? Here's the particular bit of code I'm looking at: if (roomMesh) { smgr->getMeshManipulator()->makePlanarTextureMapping( roomMesh...
- Thu Dec 18, 2008 12:08 pm
- Forum: Beginners Help
- Topic: Making an image transparent?
- Replies: 3
- Views: 409
- Thu Dec 18, 2008 11:52 am
- Forum: Beginners Help
- Topic: Making an image transparent?
- Replies: 3
- Views: 409
Making an image transparent?
This is an extremely simple question, and I feel kinda dumb for asking it, but there was NOWHERE where I was able to find an answer to this simple question. I did about 10 different searches and even in the wiki it does not come up. In the tutorials, this code is used quite often: // add irrlicht lo...