intellscene [visual studio 2005 ][Irrlicht 1.3] (SOLVED)

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
Catprog
Posts: 164
Joined: Wed Jan 31, 2007 9:07 am
Contact:

intellscene [visual studio 2005 ][Irrlicht 1.3] (SOLVED)

Post by Catprog »

I have a problem with intellscene in Visual studio 2005. It worked before but I changed to irrlicht 1.3 and now it dosen't show me any thing to do with irrlicht.
Last edited by Catprog on Tue May 15, 2007 9:35 am, edited 1 time in total.
Worteltaart
Posts: 17
Joined: Sat Mar 24, 2007 5:03 pm
Location: Holland

Post by Worteltaart »

Do you have a correct reference to the .NET dll and are you making VS aware of the namespaces?

e.g.

Code: Select all

using Irrlicht;
using Irrlicht.Core;
using Irrlicht.GUI;
using Irrlicht.IO;
using Irrlicht.Scene;
using Irrlicht.Video;
If you dont, IntelliSense is unable to figure out what you're talking about :)
roxaz
Posts: 575
Joined: Tue Jan 23, 2007 8:35 pm
Location: LT

Post by roxaz »

locate and delete .ncb file in your project directory and start MSVS now, it will work
Catprog
Posts: 164
Joined: Wed Jan 31, 2007 9:07 am
Contact:

Post by Catprog »

Thanks. Working now
Post Reply