Jump to content

Mars on Engine LeadWerks :D


Yue
 Share

Recommended Posts

I dig the atmosphere. Reminds me of Planet base.

Could be me but it looks like the rocks are not alligning to the terrain. Are you using the groundrocks shader? 

Be careful with copyrighted music. Youtube's music algorithm is able to detect music like this and your video can be automatically taken down. A simple mention of the theme song isn't a free pass. A video of mine got taken down once.

  • Upvote 1
Link to comment
Share on other sites

Here are 2 gamma correction postprocess shaders you can try:

#define GAMMA 2.2
vec3 gamma(vec3 col, float g)
{
    float i = 1. / g;
    return vec3(pow(col.x, i)
              , pow(col.y, i)
              , pow(col.z, i));
}

fragData0.rgb=gamma(fragData0.rgb, GAMMA);

or the cheapest one, looks like the one above but with no adustments to gamma.

fragData0.rgb = sqrt(fragData0.rgb);

 

HP Omen - 16GB - i7 - Nvidia GTX 1060 6GB

Link to comment
Share on other sites

  • 2 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...