set mouse position in .net

Irrlicht.Net is no longer developed or supported, Irrlicht.Net Cross Platform is a much more complete wrapper. Please ask your C# related questions on their forums first.
Locked
Pseudo
Posts: 5
Joined: Thu Jul 13, 2006 6:49 pm

set mouse position in .net

Post by Pseudo »

at one of those to fix one problem ive gotta fix another which wont fix stages....

still, short and simple: how do i set the mouse position in the .net wrapper? ive seen that its doable in c++ via the irr::gui::ICursorControl class, but nothing of note appears in irr.gui.icursorcontrol or irrlicht.gui.icursorcontrol (ps whats the deal with having irr and irrlicht, is it some screw up on mine/the computers part or is it something reasonable?)
shurijo
Posts: 148
Joined: Sat Feb 21, 2004 3:04 am

Post by shurijo »

Have you tried to set the position of the Cursor?

Code: Select all

myIrrlichtDevice.CursorControl.Position = new Irrlicht.Core.Position2D(100, 100);
Pseudo
Posts: 5
Joined: Thu Jul 13, 2006 6:49 pm

Post by Pseudo »

opps *embarssed* kinda missed that one... thanks
Locked