Search found 8 matches

by luismesas
Wed Oct 19, 2005 8:30 am
Forum: Irrlicht.NET
Topic: Displaying Irrlicht in a c# picture box
Replies: 17
Views: 10110

[STAThread]
static void Main()
{
Application.Run(new Form1());
IrrlichtDevice device = new IrrlichtDevice(DriverType.DIRECTX9, new Dimension2D(pictureBox1.Width, pictureBox1.Height), 16, false, false, false, true, pictureBox1.Handle);
while(device.Run())
{
device.VideoDriver.BeginScene(true ...
by luismesas
Tue Oct 18, 2005 2:23 pm
Forum: Irrlicht.NET
Topic: Need help on Tutorial 3
Replies: 8
Views: 13877

It seems that is not possible to do a custom scene node with current version of .Net wrapper.

Am I Wrong?
by luismesas
Tue Oct 18, 2005 2:08 pm
Forum: Irrlicht.NET
Topic: C++ -> .NET implementation listing
Replies: 5
Views: 1984

Here is an small example of using .X mesh


ITexture planet_tex = device.VideoDriver.GetTexture(@"earth.bmp");
IAnimatedMesh planet_mesh = device.SceneManager.GetMesh(@"earth.x");
ISceneNode planet_node = device.SceneManager.AddAnimatedMeshSceneNode(planet_mesh, null, -1);
planet_node ...
by luismesas
Tue Oct 18, 2005 12:05 pm
Forum: Irrlicht.NET
Topic: Camera and Objects..
Replies: 2
Views: 1443

You mean a way to rotate camera with same vector than the object?[/code]
by luismesas
Mon Oct 17, 2005 8:30 pm
Forum: Irrlicht.NET
Topic: Need help on Tutorial 3
Replies: 8
Views: 13877

Need help on Tutorial 3

I'm trying to follow tutorial 3 using C# with .Net 2.0

anyone knows how to translate Constructor declaration to C# code?

Thanks
by luismesas
Mon Oct 17, 2005 8:23 pm
Forum: Irrlicht.NET
Topic: System.AccessViolationException on exit when using OpenGL
Replies: 7
Views: 2916

It seems to be a Memory access bug when using OpenGL as device Type. I got it at .Net 1.1 And .Net 2.0.

Wait to a future version to get it solved.
by luismesas
Mon Oct 17, 2005 8:20 pm
Forum: Irrlicht.NET
Topic: Irrlicht.NET compiling under .NET 2.0 framework
Replies: 4
Views: 1998

I'm currently using Irrlicht engine on a .Net 2.0 game and it's running nice.
by luismesas
Mon Oct 17, 2005 8:17 pm
Forum: Irrlicht.NET
Topic: Displaying Irrlicht in a c# picture box
Replies: 17
Views: 10110

Sorry, was not logged in.

That's the device creation you have to use at start of your Init function.