Hi there,
I've just started learning the Irrlicht Engine and have come across a question.
Is it possible to hide the Irrlicht status console window when creating a console application? Or must I create a winforms solution and render the engine in a picturebox or similar?
Looking forward to an answer.
Hide Irrlicht console window?
Hide Irrlicht console window?
Last edited by Pantheon on Mon Aug 28, 2006 8:24 pm, edited 1 time in total.
To live in the Idea is to treat the impossible as thought it were possible.
This is my main right now:
I'd like this to be rendered without the Irrlicht Engine Version window.
(Sorry if my question is simple, but I just couldn't find what I was looking for in the documentation.)
Code: Select all
static void Main(string[] args)
{
IrrlichtDevice device = new IrrlichtDevice(DriverType.DIRECT3D9);
device.WindowCaption = "Loading...";
device.ResizeAble = true;
ICameraSceneNode camera = device.SceneManager.AddCameraSceneNodeFPS();
camera.Position = new Vector3D(-50, 50, -150);
while (device.Run())
{
if (device.WindowActive)
{
device.VideoDriver.BeginScene(true, true, new Color(0, 0, 0, 0));
device.SceneManager.DrawAll();
device.VideoDriver.EndScene();
}
}
}
(Sorry if my question is simple, but I just couldn't find what I was looking for in the documentation.)
Saku, you're right.
Pantheon, I think you were looking for this:
http://irrlicht.sourceforge.net/phpBB2/ ... hp?t=11986
cheers
Pantheon, I think you were looking for this:
http://irrlicht.sourceforge.net/phpBB2/ ... hp?t=11986
cheers
-
- Posts: 0
- Joined: Thu Oct 12, 2006 8:05 am