Post Your Irrlicht Screenshots / Render Here.

Post your questions, suggestions and experiences regarding to Image manipulation, 3d modeling and level editing for the Irrlicht engine here.
wing64
Competition winner
Posts: 242
Joined: Wed Jul 23, 2008 2:35 am
Location: Thailand
Contact:

Re: Post Your Irrlicht Screenshots / Render Here.

Post by wing64 »

Sponza (SphericalHarmonic) from Crytek rendering by ARSA Framework.
http://www.research.scea.com/gdc2003/sp ... ghting.pdf
Image

Image Image Image Image
Image Image Image Image
Image Image Image Image
Image Image Image Image
Image Image Image Image

Image Image Image Image
Image Image ImageImage
Image
Last edited by wing64 on Sun Nov 20, 2011 12:10 pm, edited 1 time in total.
Mel
Competition winner
Posts: 2292
Joined: Wed May 07, 2008 11:40 am
Location: Granada, Spain

Re: Post Your Irrlicht Screenshots / Render Here.

Post by Mel »

use and abuse of the built in Parallax Mapping of Irrlicht ^^U

Image
"There is nothing truly useless, it always serves as a bad example". Arthur A. Schmitt
Radikalizm
Posts: 1215
Joined: Tue Jan 09, 2007 7:03 pm
Location: Leuven, Belgium

Re: Post Your Irrlicht Screenshots / Render Here.

Post by Radikalizm »

@wing64: Very nice screens, but why does everything look so grainy? Looks like an SSAO or SSGI post-effect gone wrong

@Mel: Nice screenshots too, only thing is that there's something strange going on with your texture filtering or your mipmap settings. Things start to get blurry really fast, and the screen you submitted for this month's competition has some really heavy moiré patterns
Mel
Competition winner
Posts: 2292
Joined: Wed May 07, 2008 11:40 am
Location: Granada, Spain

Re: Post Your Irrlicht Screenshots / Render Here.

Post by Mel »

The moire pattern is due to the editor grid drawing. And i am using trilinear filtering + mip mapping. Disabling the mipmaps slows down the render a bit. Though i guess i could fix the filtering so it is done at a larger distance.
"There is nothing truly useless, it always serves as a bad example". Arthur A. Schmitt
serengeor
Posts: 1712
Joined: Tue Jan 13, 2009 7:34 pm
Location: Lithuania

Re: Post Your Irrlicht Screenshots / Render Here.

Post by serengeor »

Mel wrote:The moire pattern is due to the editor grid drawing.
Can't you remove it when rendering? It would look a lot nicer without it :roll:
Working on game: Marrbles (Currently stopped).
hendu
Posts: 2600
Joined: Sat Dec 18, 2010 12:53 pm

Re: Post Your Irrlicht Screenshots / Render Here.

Post by hendu »

Hm, why no aniso?
Mel
Competition winner
Posts: 2292
Joined: Wed May 07, 2008 11:40 am
Location: Granada, Spain

Re: Post Your Irrlicht Screenshots / Render Here.

Post by Mel »

I don't see much diference between anisotropic and trilinear filtering.
"There is nothing truly useless, it always serves as a bad example". Arthur A. Schmitt
Mel
Competition winner
Posts: 2292
Joined: Wed May 07, 2008 11:40 am
Location: Granada, Spain

Re: Post Your Irrlicht Screenshots / Render Here.

Post by Mel »

Image

Finished a vertex lightmapper to bake the light into the vertices :) The next step is to have a full lightmap generator, but, i don't know yet how will i generate the proper mapping coordinates, so it gives a nice result, and it doesn't look too odd.
"There is nothing truly useless, it always serves as a bad example". Arthur A. Schmitt
CuteAlien
Admin
Posts: 9691
Joined: Mon Mar 06, 2006 2:25 pm
Location: Tübingen, Germany
Contact:

Re: Post Your Irrlicht Screenshots / Render Here.

Post by CuteAlien »

I would also have guessed that anisotropic should look better on your screenshot above. Maybe it's also something with filter-distances.
And great new shot :-)
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Mel
Competition winner
Posts: 2292
Joined: Wed May 07, 2008 11:40 am
Location: Granada, Spain

Re: Post Your Irrlicht Screenshots / Render Here.

Post by Mel »

thanks :) I've been messing with the anisotropic, and all the texture tweaking options, and it not always ends well :P

Image

Presenting Watercolors mode! :lol: I've been touching this and that and now it is user selectable, you can have plain (a bit toned down for better performance) bilinear, trilinear by default, and anisotropic filtering for high quality rendering.
"There is nothing truly useless, it always serves as a bad example". Arthur A. Schmitt
3DModelerMan
Posts: 1691
Joined: Sun May 18, 2008 9:42 pm

Re: Post Your Irrlicht Screenshots / Render Here.

Post by 3DModelerMan »

Cool. It looks kind of like Skyward Sword.
That would be illogical captain...

My first full game:
http://www.kongregate.com/games/3DModel ... tor#tipjar
Granyte
Posts: 850
Joined: Tue Jan 25, 2011 11:07 pm
Contact:

Re: Post Your Irrlicht Screenshots / Render Here.

Post by Granyte »

Image

atmospheric scattering (Sean O'Neil implementation but calculated per pixel) and terrain texture splating based on a heightmap

edit can't get the image to properly display so http://granyte.blogspot.com/2011/12/her ... l?spref=fb
hendu
Posts: 2600
Joined: Sat Dec 18, 2010 12:53 pm

Re: Post Your Irrlicht Screenshots / Render Here.

Post by hendu »

Image

Had to test point sprites. It has 65k [point sprite] billboards and runs at an almighty 120fps. The same amount done on irrlicht billboards ran at 5fps, but that didn't batch them together; that would be additional code, I'm too lazy.
Phallic
Posts: 1
Joined: Fri Aug 12, 2011 2:23 am

Re: Post Your Irrlicht Screenshots / Render Here.

Post by Phallic »

MADNESS
Image
Katsankat
Posts: 178
Joined: Sun Mar 12, 2006 4:15 am
Contact:

Re: Post Your Irrlicht Screenshots / Render Here.

Post by Katsankat »

Welcome aboard Phallic.
Hendu how do you do this? :?:

Today been importing DEM files from NASA SRTM 3 arcs/second (1 pixel represents 90 meters).

Image

The code does
- Unzip the DEM file,
- Swap bytes for Little Endian,
- Convert to bmp,
- Generate topo color map from elevations,
- Generate lightmap,
- Then bake lightmap into texture (1201X1201 pixels),
- Resize the heightmap to 257X257 pixels
- Render ...

and yes of course it is where I live hahaha
Post Reply