Search found 16 matches

by matiae
Wed Jan 24, 2007 6:28 am
Forum: Irrlicht.NET
Topic: C# - Detect Keyboard Input
Replies: 6
Views: 3445

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 :wink:
by matiae
Tue Oct 10, 2006 1:39 pm
Forum: Beginners Help
Topic: How to get the parent not using getParent()??
Replies: 2
Views: 188

haaa right, but sure that is expensive.. isn't there a more direct way?? I wonder why getParent() is not implemented :?
by matiae
Sat Oct 07, 2006 8:19 pm
Forum: Beginners Help
Topic: How to get the parent not using getParent()??
Replies: 2
Views: 188

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 :( :!:
by matiae
Sat Oct 07, 2006 2:00 am
Forum: Irrlicht.NET
Topic: getParent??
Replies: 0
Views: 1285

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?? :?
by matiae
Thu Sep 28, 2006 9:38 am
Forum: Irrlicht.NET
Topic: rotate textures
Replies: 0
Views: 1124

rotate textures

Is any way to do it in Irrlicht.NET or should I try something with unsafe code? :?
by matiae
Thu Sep 28, 2006 7:03 am
Forum: Irrlicht.NET
Topic: Cam question
Replies: 1
Views: 1320

hi,
do you mean like a 3rd person camera? this can be implemented easily making ship node the parent of the camera, then when the ship node moves all child nodes moves too relative to the parent node. Search the forum for different implementations of 3rd camera.
by matiae
Thu Sep 21, 2006 10:50 am
Forum: Irrlicht.NET
Topic: How to get the handle of an Irrlicht window?
Replies: 4
Views: 2002

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...
by matiae
Wed Sep 20, 2006 9:18 pm
Forum: Beginners Help
Topic: Camera shaking on large position values
Replies: 4
Views: 1656

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...
by matiae
Wed Sep 20, 2006 3:20 pm
Forum: Beginners Help
Topic: Camera shaking on large position values
Replies: 4
Views: 1656

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?? :o
by matiae
Wed Sep 20, 2006 6:44 am
Forum: Irrlicht.NET
Topic: How to get the handle of an Irrlicht window?
Replies: 4
Views: 2002

hi, in .NET every control (and form) has the .Handle property that gets the IntPtr.. it's not a method :)
by matiae
Tue Aug 15, 2006 2:23 am
Forum: Irrlicht.NET
Topic: Can i use it with Visual C++ Express
Replies: 3
Views: 1648

You must add in the references the Irrlicht.NET.dll, and copy the Irrlicht.dll to the application dir
by matiae
Tue Aug 15, 2006 2:17 am
Forum: Irrlicht.NET
Topic: Accessing GUI events
Replies: 8
Views: 3507

hi,
you should implement IEventReceiver.OnEvent. There you can look if the event is GUIEvent, GUIEvent.BUTTON_CLICKED and if the e.GUIEventCaller.ID == 101.. and then you could invoke a delegate.
by matiae
Sun Aug 13, 2006 8:25 pm
Forum: Irrlicht.NET
Topic: UserControl for Windows Forms.
Replies: 2
Views: 1664

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),...
by matiae
Thu Aug 03, 2006 7:48 am
Forum: Irrlicht.NET
Topic: Winforms events help
Replies: 11
Views: 3963

michael520 wrote: I suggest that niko or afecis should add solutions for this questions to the wiki. :wink:
I have to agree.. :?
by matiae
Fri Jul 21, 2006 8:10 pm
Forum: Irrlicht.NET
Topic: Irrlicht in a WinForm!
Replies: 32
Views: 8734

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