Jump to content

Recommended Posts

Posted

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
Posted

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

Posted

 

@St0nedas
Info Google :

Copyrighted content found in your video.
The claimant allows you to use your content in the YouTube video, but ads may appear.
REPRODUCTION RESTRICTIONS : No restriction

 

 

Astrocuco.thumb.png.c76e0fb3de2d6e437e7dca099625e11e.png

  • 2 weeks later...
Posted

 

Hello, it will be in first person, but not shooting, and in third person when you access a vehicle. New video, final rocks for terrain on Mars. :)
 

 

  • Upvote 1

 

 

Astrocuco.thumb.png.c76e0fb3de2d6e437e7dca099625e11e.png

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.

×
×
  • Create New...