Post Your Irrlicht Screenshots / Render Here.
Re: Post Your Irrlicht Screenshots / Render Here.
Incredible graphics, tiny spelling bug - "opponents" needs double p. I'd also change the sentence to "Choose how hard your CPU opponents will be".
Nadro has added some cubemap texture support for opengl 12 days ago. No idea if this will help you somewhat.
Nadro has added some cubemap texture support for opengl 12 days ago. No idea if this will help you somewhat.
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
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Re: Post Your Irrlicht Screenshots / Render Here.
Hmm... perhaps with cubemaps on both drivers i would work things other way... but i was just asking out of curiosity really ^^U
Thanks for the correction though
Thanks for the correction though
"There is nothing truly useless, it always serves as a bad example". Arthur A. Schmitt
Re: Post Your Irrlicht Screenshots / Render Here.
if cubemaps are supported on OGL ill make a patch to support them on d3d9 and d3d11 as soon as my exams are passed.
Re: Post Your Irrlicht Screenshots / Render Here.
finally i got it working a cubemap into a spherical environment maps. The point is that the sphere maps that Irrlicht supports currently are only valid in one direction, this is valid on every direction, and can be seamlessly sampled into any mip level, providing a way to model gloss from environment maps, for instance.
The dwarf is animated, if you're wondering...
"There is nothing truly useless, it always serves as a bad example". Arthur A. Schmitt
-
- Competition winner
- Posts: 688
- Joined: Mon Sep 10, 2012 8:51 am
Re: Post Your Irrlicht Screenshots / Render Here.
Bravo, Mel!
It does make the dwarf look kinda funny. XD
It does make the dwarf look kinda funny. XD
Re: Post Your Irrlicht Screenshots / Render Here.
Thanks! but now BEHOLD TEH ALMIGHTY TECHNO DWARF!
This time, instead of using a cubemap, i've used a set of lights to act as the source for the reflections, i render the shape of the light on the sphere map, and use it to create the reflections. this is the obtained reflection map
Using a smaller mipmap and using the world normals instead of the reflections, it can be used to generate an image based lighting solution out of multiple lights.
Pro: Unlimited lights!
Con: Unlimited STATIC lights
For deferred renderers it may act as a lighting probe
XD
This time, instead of using a cubemap, i've used a set of lights to act as the source for the reflections, i render the shape of the light on the sphere map, and use it to create the reflections. this is the obtained reflection map
Using a smaller mipmap and using the world normals instead of the reflections, it can be used to generate an image based lighting solution out of multiple lights.
Pro: Unlimited lights!
Con: Unlimited STATIC lights
For deferred renderers it may act as a lighting probe
XD
"There is nothing truly useless, it always serves as a bad example". Arthur A. Schmitt
-
- Competition winner
- Posts: 688
- Joined: Mon Sep 10, 2012 8:51 am
Re: Post Your Irrlicht Screenshots / Render Here.
Ooooo!
Could it be altered to allow for dynamic lights?
Could it be altered to allow for dynamic lights?
Re: Post Your Irrlicht Screenshots / Render Here.
Depending on the approach. The fastest way would be to render the environment on a cubemap (or 6 textures, or an atlas with 6 textures stored) and convert it back to a sphere map, but currently, Irrlicht won't generate mipmaps for rendertargets, losing some features. For static scenes, it is a good way to store environment maps though, because you can store many maps in a single texture, but for dynamic scenes, if you are using only the lights, it is better to go directly for a deferred renderer.
"There is nothing truly useless, it always serves as a bad example". Arthur A. Schmitt
-
- Posts: 1010
- Joined: Mon Oct 24, 2011 10:03 pm
- Location: 0x45 61 72 74 68 2c 20 69 6e 20 74 68 65 20 73 6f 6c 20 73 79 73 74 65 6d
Re: Post Your Irrlicht Screenshots / Render Here.
Not particularly pleasing, visually, nor particularly relevant technologically.
But my mesher's working and generating pretty efficient meshes... just very slowly. (not sure why the border is there, that's a fullscreen window... or is it a screensized window that just has the border hidden off-screen? I can't remember)
"this is not the bottleneck you are looking for"
Re: Post Your Irrlicht Screenshots / Render Here.
Wow! pretty cool! How did you get seamless reflection mapping on the dwarf?
Thought I'd also post a few screenshots as I just figured out how to do plane based fog.
Thought I'd also post a few screenshots as I just figured out how to do plane based fog.
Re: Post Your Irrlicht Screenshots / Render Here.
I tried mixing Traditional Fog with Plane Based Fog which looked O.K.
Re: Post Your Irrlicht Screenshots / Render Here.
Here I added a thing that lets you place a given light position at the camera position so that I could check the correctness of
the rendered specular hihlights..