Jump to content

Recommended Posts

Posted

@DudeAwesome :

Last update of today fixed the material editor bug and it works (only generate material function is buggy).

What don't works for me it's the environment shader i modified.

 

@Shadmar :

Could you post your environment shader file ?

Stop toying and make games

Posted

 

yes, just replace

outcolor = mix(outcolor,texture(texture4,cubecoord),0.5); //mix diffuse with cubemap reflection 50%

 

with

 

outcolor = mix(outcolor,texture(texture4,cubecoord),ex_color.a); //mix diffuse with cubemap reflection based on alpha

 

 

About texture having only some parts with environment it seems not working replacing the line of code.

 

I put the diffuse texture with alpha i used if someone want to test.

post-3271-0-73750500-1396812581_thumb.jpg

wall3Water.zip

Stop toying and make games

Posted

But if you want to have reflection based on a alpha pattern from texture, you can use :

 

outcolor = mix(outcolor,texture(texture4,cubecoord),outcolor.a);

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

Posted

What I did to have control over the shininess is make a range of shaders for 20% 30% 40% 50% 60% 70%

By changing the line "outcolor = mix(outcolor,texture(texture4,cubecoord),0.5); //mix diffuse with cubemap reflection 50%" to that values.

 

Works great :)

  • Upvote 2
  • 3 weeks later...
Posted

@Shadmar :

How to color the environment map ?

I mean have it gold or silver or copper color when fully reflective.

What line of code in the shader to colorise it if you know how to do it ?

Stop toying and make games

Posted

Just multiply material color-selector to the cubemap texture... vec4(ex_color.rgb,1)

 

so something like this probably

 

outcolor = mix(outcolor,texture(texture4,cubecoord)*vec4(ex_color.rgb,1),outcolor.a);

  • Upvote 1

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

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...