Search found 3 matches

by Hurley451
Fri Dec 08, 2006 6:06 pm
Forum: Irrlicht.NET
Topic: 2D in C#
Replies: 4
Views: 2274

Backslashes are interpreted as escape characters, such as \n for newline. In order to store an actual blackslash in a string you can either escape it (use double) or the following:

Code: Select all

string StringMe = @"\path\pathSub\HereItIs";
by Hurley451
Wed Dec 06, 2006 4:38 am
Forum: Irrlicht.NET
Topic: Particle engine not displaying
Replies: 1
Views: 1367

Check your camera. I ran into this as well the first day I messed around with Irrlicht (admittedly this was yesterday). When creating a FPS styled camera the particle emiter/node is visible, when creating a non-FPS camera it does not appear. I'm not sure what is causing it yet, or what I'm failing t...
by Hurley451
Wed Dec 06, 2006 4:34 am
Forum: Irrlicht.NET
Topic: Movable cursor in FPS camera mode?
Replies: 4
Views: 2130

If you haven't figured this out already, you could always try responding to a key event (such as key.KEY_SHIFT, etc) by setting:

<cameraFoo>.InputReceiverEnabled=false

and then enabling it once the key is lifted.