Hi,
You missed to set the EventReceiver, which is the same class.. so you should do device.EventReceiver = this but you can't because main is a static method
Search found 16 matches
- Wed Jan 24, 2007 6:28 am
- Forum: Irrlicht.NET
- Topic: C# - Detect Keyboard Input
- Replies: 6
- Views: 3460
- Tue Oct 10, 2006 1:39 pm
- Forum: Beginners Help
- Topic: How to get the parent not using getParent()??
- Replies: 2
- Views: 192
- Sat Oct 07, 2006 8:19 pm
- Forum: Beginners Help
- Topic: How to get the parent not using getParent()??
- Replies: 2
- Views: 192
How to get the parent not using getParent()??
Is there another way to get it?? I ask because the function is not present in Irrlicht.NET
- Sat Oct 07, 2006 2:00 am
- Forum: Irrlicht.NET
- Topic: getParent??
- Replies: 0
- Views: 1288
getParent??
I need to get the parent of a node but there is not function or property for this in .NET. How can I get the parent in .NET??
- Thu Sep 28, 2006 9:38 am
- Forum: Irrlicht.NET
- Topic: rotate textures
- Replies: 0
- Views: 1129
rotate textures
Is any way to do it in Irrlicht.NET or should I try something with unsafe code?
- Thu Sep 28, 2006 7:03 am
- Forum: Irrlicht.NET
- Topic: Cam question
- Replies: 1
- Views: 1324
- Thu Sep 21, 2006 10:50 am
- Forum: Irrlicht.NET
- Topic: How to get the handle of an Irrlicht window?
- Replies: 4
- Views: 2015
haa, I see.. :o I don't know if there is a better way to do it in .NET but you could use window api functions, e.g. using System; using System.Collections.Generic; using System.Text; using Irrlicht; using Irrlicht.Core; using System.Runtime.InteropServices; namespace Project1 { class Class1 { [DllIm...
- Wed Sep 20, 2006 9:18 pm
- Forum: Beginners Help
- Topic: Camera shaking on large position values
- Replies: 4
- Views: 1673
Over 1M in any axis :shock: I tested this in an AMD 64 and the shakes become smoother than in my 32 pc .. Certainly the tiling system would be the best solution, thanks for the advice!! :) Haa, and if someone is interested, in a quick search I found this articles about tiling games http://www.gamede...
- Wed Sep 20, 2006 3:20 pm
- Forum: Beginners Help
- Topic: Camera shaking on large position values
- Replies: 4
- Views: 1673
Camera shaking on large position values
Hi, I've just noticed this effect in the camera movements when position has large values.. I suppose due to matrix calculation methods with large floats and I wanna know what should be the proper solution for this if I must implement a huge scene??
- Wed Sep 20, 2006 6:44 am
- Forum: Irrlicht.NET
- Topic: How to get the handle of an Irrlicht window?
- Replies: 4
- Views: 2015
- Tue Aug 15, 2006 2:23 am
- Forum: Irrlicht.NET
- Topic: Can i use it with Visual C++ Express
- Replies: 3
- Views: 1671
- Tue Aug 15, 2006 2:17 am
- Forum: Irrlicht.NET
- Topic: Accessing GUI events
- Replies: 8
- Views: 3537
- Sun Aug 13, 2006 8:25 pm
- Forum: Irrlicht.NET
- Topic: UserControl for Windows Forms.
- Replies: 2
- Views: 1670
Hi, The control I'm using now is a Panel.. About the threads.. it seems to be a problem with the main loop in other thread and the Irrlicht Events. The thing is that the new thread (usually named a worker thread) in theory, can't read messages from the message loop in the main thread (a GUI thread),...
- Thu Aug 03, 2006 7:48 am
- Forum: Irrlicht.NET
- Topic: Winforms events help
- Replies: 11
- Views: 4001
- Fri Jul 21, 2006 8:10 pm
- Forum: Irrlicht.NET
- Topic: Irrlicht in a WinForm!
- Replies: 32
- Views: 8855
Hi, I had the same problem with the winforms events, so I created a class to manage the Irrlicht device. This class has methods that are called when a winform event occurs on the form control.. :? of course it could become much more complicated to do things like control a FPS camera. Has anyone done...