GUI problem

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
Arkaz
Posts: 6
Joined: Fri Jun 01, 2007 6:42 pm

GUI problem

Post by Arkaz »

Hi, I'm currently testing the engine and I began with the HelloWorld example but something is strange... the logo is not displayed !

Is it a bug or my settings? It does not seem to be a problem from the texture because if I replace the lines :

Code: Select all

					device.VideoDriver.Draw2DImage(
						texLogo, new Position2D(10,10),
						new Rect(0,0,88,31), 
						new Rect(new Position2D(0,0),device.VideoDriver.ScreenSize),
						new Color(0xffffff), false);
by :

Code: Select all

                    device.VideoDriver.Draw2DImage(texLogo, new Position2D(10, 10));


The logo is now displayed !
Last edited by Arkaz on Mon Jun 04, 2007 6:43 pm, edited 1 time in total.
Arkaz
Posts: 6
Joined: Fri Jun 01, 2007 6:42 pm

Post by Arkaz »

I have a problem rendering the 6th example#net too. The 2D images don't appear.

No problems in the C++ version...


Can someone tell me if he has the same bugs please ?
Arkaz
Posts: 6
Joined: Fri Jun 01, 2007 6:42 pm

Post by Arkaz »

I just want to know if someone has no problem with the 6th exemple-net... Just a click on build and run ;)

No images appears for me...

Thanks for help.
Locked