Search found 30 matches

by Cube3
Fri Nov 17, 2006 5:05 pm
Forum: Irrlicht.NET
Topic: Multiple-key input?
Replies: 9
Views: 4172

Seems Like I didn't want a dependency to Managed Direct Input.

Edit:

Seem Like you didn't want it either after all. ;)
by Cube3
Sat Jul 08, 2006 9:02 am
Forum: Irrlicht.NET
Topic: Cumber Syntax in Irrlicht.NET
Replies: 2
Views: 1309

You will find you will need to wrap not only the structures.
by Cube3
Sat Jun 24, 2006 10:17 am
Forum: Irrlicht.NET
Topic: incorrect bounding box with .X animated meshes???
Replies: 1
Views: 1288

Feed all the vertices to Newton and let collision be handled. Or if simple convex such as Box, sphere, ellipse would suffice you can calculate sizes yourself and feed them into Newton. Sjef van Leeuwen translated the Newton tutorial to Irrlicht.NET, download it here http://irrlicht.sourceforge.net/d...
by Cube3
Sat Jun 24, 2006 10:10 am
Forum: Irrlicht.NET
Topic: is irrlicht.net ready for making product?
Replies: 2
Views: 1606

Are you ready? Then you can.
by Cube3
Sat Jun 24, 2006 10:09 am
Forum: Irrlicht.NET
Topic: Embedded irrlicht in aspx doc
Replies: 1
Views: 1504

By looking at the ActivX control architecture, there is no reason to assume that it would not be possible.
by Cube3
Tue Jun 06, 2006 4:29 pm
Forum: Irrlicht.NET
Topic: Irrlicht.NET with ASP.NET?
Replies: 2
Views: 1741

It would be truly awesome if that did it.

You can't create a window on the client this way, ASP.NET runs server side.

If you want to host it on the client, you will need to encapsulate it in a browser control. like ActiveX and ship the dependend DLL's the the client's browser.
by Cube3
Thu Jun 01, 2006 3:39 pm
Forum: Irrlicht.NET
Topic: IrrlichtException Object?
Replies: 4
Views: 1668

Exceptions from Irrlicht? I have never been able to create a C++ runtime error, and I am usually good at breaking things.

:lol:
by Cube3
Tue May 30, 2006 5:21 pm
Forum: Irrlicht.NET
Topic: Compiling Irrlicht.NET with VS 2005
Replies: 4
Views: 2358

Care to share the solution here with us?

Would be great. thanks.
by Cube3
Tue May 30, 2006 3:18 pm
Forum: Irrlicht.NET
Topic: Compiling Irrlicht.NET with VS 2005
Replies: 4
Views: 2358

There are more issues than Paramflag, you can find how to resolve that in this forum, it has been discussed before. There are more issues, the old clr syntax will not solve everything. For example there is no default constructor in value classes, so after fixing the paramflags, it will bring up a lo...
by Cube3
Wed May 24, 2006 3:13 pm
Forum: Irrlicht.NET
Topic: Irrlicht in a WinForm!
Replies: 32
Views: 8305

In the constructor of your form after

Code: Select all

InitializeComponent();
Use

Code: Select all

CheckForIllegalCrossThreadCalls = false;
by Cube3
Wed May 24, 2006 9:18 am
Forum: Irrlicht.NET
Topic: Irrlicht in a WinForm!
Replies: 32
Views: 8305

You are initializing the device on a different thread than the render loop. There are issues with that, OPENGL will then show a black screen. Try DirectX8 or 9 and it should work, or choose to run the control + irrlicht on the same thread.
by Cube3
Wed May 24, 2006 9:13 am
Forum: Irrlicht.NET
Topic: Physics and Irrlicht.NET, the revenge!!
Replies: 3
Views: 1914

A tutorial using irrlicht.net with newton will be made available at the next irrlicht site update.
by Cube3
Mon May 22, 2006 11:56 am
Forum: Irrlicht.NET
Topic: Synchronizing physics across the network.
Replies: 0
Views: 1067

Synchronizing physics across the network.

This probably has to do more with physics than irrlicht itself but maybe people within this group have looked into this. The only document i can find in order to synchronize physics across the network is this one: http://www.gaffer.org/articles/NetworkedPhysics.html I am looking at the best implemen...
by Cube3
Wed May 17, 2006 2:52 pm
Forum: Irrlicht.NET
Topic: Multiple-key input?
Replies: 9
Views: 4172

If you are willing to do your own implementation instead of irrlicht's, you could take a look at http://irrlicht.sourceforge.net/phpBB2/ ... hp?t=12301