Search found 7 matches

by JJJohan
Tue Dec 23, 2008 11:14 am
Forum: Project Announcements
Topic: IrrNewt irrlicht\newton framework >> SVN access
Replies: 432
Views: 164748

Hmm I've seem to fix the last two errors, but now I've got a whole bunch of new ones, but they're too dynamic to list right now..
by JJJohan
Tue Dec 23, 2008 5:20 am
Forum: Project Announcements
Topic: IrrNewt irrlicht\newton framework >> SVN access
Replies: 432
Views: 164748

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 ...
by JJJohan
Tue Dec 23, 2008 3:54 am
Forum: Beginners Help
Topic: VS2008 setup problems
Replies: 2
Views: 314

Yes, I'm using a tutorial code as base. It includes:

Code: Select all

//#ifdef _MSC_VER
//#pragma comment(lib, "Irrlicht.lib")
//#endif
Hang on, they're commented..

Yay! Thanks, I can't believe I didn't notice that..
by JJJohan
Tue Dec 23, 2008 3:39 am
Forum: Beginners Help
Topic: VS2008 setup problems
Replies: 2
Views: 314

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 ...
by JJJohan
Thu Dec 18, 2008 11:56 pm
Forum: Beginners Help
Topic: Changing a texture's height map value in realtime?
Replies: 1
Views: 273

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 ...
by JJJohan
Thu Dec 18, 2008 12:08 pm
Forum: Beginners Help
Topic: Making an image transparent?
Replies: 3
Views: 512

Hmm, well I just stuck with making the image transparent in Photoshop which worked for me.
by JJJohan
Thu Dec 18, 2008 11:52 am
Forum: Beginners Help
Topic: Making an image transparent?
Replies: 3
Views: 512

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 ...