Hello,
In my expreince the Irrlicht .NET CP wrapper is the most complete at the moment. It includes almost all the features that C++ version does including custom affectors, scenenodes.
http://irrlichtnetcp.sourceforge.net/in ... /Main_Page
- Tero
Search found 18 matches
- Fri Oct 06, 2006 2:18 pm
- Forum: Irrlicht.NET
- Topic: Which Wrapper??
- Replies: 1
- Views: 1370
- Wed Jul 05, 2006 9:50 am
- Forum: Irrlicht.NET
- Topic: GUI options
- Replies: 2
- Views: 1619
Are there any .net gui libraries (that's a question in itself...) that work with irrlicht that anyone knows of? Of course you can use the .NET own GUI components if you embed the Irrlicht in .NET form or panel. This way you can do what ever you please with the gui. But there are of course few drawb...
- Tue Jun 13, 2006 7:57 am
- Forum: Irrlicht.NET
- Topic: Design to Events handling
- Replies: 1
- Views: 1059
- Mon Jun 12, 2006 5:24 pm
- Forum: Irrlicht.NET
- Topic: Multiple devices
- Replies: 0
- Views: 1068
Multiple devices
What might be impact (resource wise) when using multiple irrlicht instances in the project. I'm currently using 3 (all renders to own panel) and it works fine. But what if I would like to add e.g. 6 more. So then I would have 9 different Irllicht rendering containers. Does this approach consume a lo...
- Fri Jun 09, 2006 1:33 pm
- Forum: Irrlicht.NET
- Topic: .NET fonts
- Replies: 7
- Views: 1745
Here it is, maybe "crap" is wrong word for it but anyways...
http://img476.imageshack.us/my.php?image=font2de.jpg
http://img476.imageshack.us/my.php?image=font2de.jpg
- Thu Jun 08, 2006 11:40 am
- Forum: Irrlicht.NET
- Topic: .NET fonts
- Replies: 7
- Views: 1745
- Tue Jun 06, 2006 6:15 am
- Forum: Irrlicht.NET
- Topic: .NET fonts
- Replies: 7
- Views: 1745
- Mon Jun 05, 2006 6:35 am
- Forum: Irrlicht.NET
- Topic: .NET fonts
- Replies: 7
- Views: 1745
.NET fonts
Hello,
Is there any way to get fonts look good in irrlicht .NET?
I have seen that there is the TrueType font "extension" but it isn't for .NET version.
Any help is appreciated....
Is there any way to get fonts look good in irrlicht .NET?
I have seen that there is the TrueType font "extension" but it isn't for .NET version.
Any help is appreciated....
- Tue May 23, 2006 8:47 pm
- Forum: FAQs, Tutorials, Howtos, and external tool lists
- Topic: TrueType font Support by FreeType Library
- Replies: 183
- Views: 102494
.NET version
Is there any way to get this to the .NET side also?
- Wed May 03, 2006 6:58 pm
- Forum: Irrlicht.NET
- Topic: OPENGL problems & strange crash
- Replies: 7
- Views: 1898
- Wed May 03, 2006 2:55 pm
- Forum: Irrlicht.NET
- Topic: OPENGL problems & strange crash
- Replies: 7
- Views: 1898
- Wed May 03, 2006 7:29 am
- Forum: Irrlicht.NET
- Topic: OPENGL problems & strange crash
- Replies: 7
- Views: 1898
- Tue May 02, 2006 9:17 am
- Forum: Irrlicht.NET
- Topic: OPENGL problems & strange crash
- Replies: 7
- Views: 1898
- Tue May 02, 2006 9:15 am
- Forum: Irrlicht.NET
- Topic: OPENGL problems & strange crash
- Replies: 7
- Views: 1898
OPENGL problems & strange crash
I have poblems with OPENGL rendering. I'm developing a game and in options the user can choose the preferred redering mode. DirectX 9, DirectX 8 and Software are working ok but when using OPENGL the screen is just black. The rendering is done in a control (via handle), could this have some affect? A...
- Wed Apr 19, 2006 8:49 am
- Forum: Irrlicht.NET
- Topic: PictureBox Docked (Fill), Doesn't Resize properly.
- Replies: 4
- Views: 1615
No, for that the device has to be created again. You can also try to set the control size manually to the desiredd resolution and after that create the device. E.g. this.Widht = 1024; this.Height = 768; Initialize(this.Handle); The .NET layout engine will change the control size again if the control...