Random WIP 2014+ - Page 4

Random WIP 2014+

Share and discuss visual creations and creation practices like texturing, modelling and musing on the meaning of life.

Moderators: MR.D, Moderators

User avatar
jK
Spring Developer
Posts: 2299
Joined: 28 Jun 2007, 07:30

Re: Random WIP 2014+

Post by jK »

another picture why tex2 reflection is such important (and still 90% of spring modelers _don't use it at all_, what is a DAMN FAILURE)
1. it gives the model a metallic look (and 90% of the models are metallic!!!)
2. it gives the model _depth_ (esp. when it or the camera moves)
Image
Image
SO GUYS USE THE GREEN CHANNEL IN TEXTURE2!!! it is even more important than a good tex1!
metal3_on.jpg
(104.05 KiB) Downloaded 5 times
metal3_off.jpg
(111.83 KiB) Downloaded 5 times
User avatar
Beherith
Posts: 5145
Joined: 26 Oct 2007, 16:21

Re: Random WIP 2014+

Post by Beherith »

jK wrote:
Beherith wrote:Mmm detail shader, tell me more :)

I would especially like to know if you are using a second set of UVs for it or if youre just wrapping a texture on it.
it's a detalmap shader, so no additional uv map. It's just the stock renderer with ~4 additional lines that splat the detailmap across the texture (in 2 different resolutions to reduce repetition). It mixes it minor into the diffuse color and heavily into the specular reflection term.
Cool! Have you thought of incorporating different resolutions into different channels of the image? I'm guessing you are using greyscale anyway. Its common to store multiple octaves of noise in different channels of an RGBA image.


EDIT: Yeah tex2 is essential, even if its just a grayscale copy of the luminance of the diffuse color. Incorporating different noise into it really has a profound effect.

EDIT2: Thanks for the map comment, it will also be playable for 4way FFA.
User avatar
smoth
Posts: 22309
Joined: 13 Jan 2005, 00:46

Re: Random WIP 2014+

Post by smoth »

90% seems like a wild exaggeration
User avatar
FLOZi
MC: Legacy & Spring 1944 Developer
Posts: 6240
Joined: 29 Apr 2005, 01:14

Re: Random WIP 2014+

Post by FLOZi »

Nota Bene: Those models are not actually textured with a true texture 1 so adding texture 2 for them seems a bit of an ask atm. 8)

Though I guess even having a junk T2 to go with the junk T1 helps pick out specular highlights.
User avatar
jK
Spring Developer
Posts: 2299
Joined: 28 Jun 2007, 07:30

Re: Random WIP 2014+

Post by jK »

Beherith wrote:Cool! Have you thought of incorporating different resolutions into different channels of the image? I'm guessing you are using greyscale anyway. Its common to store multiple octaves of noise in different channels of an RGBA image.
Putting multiple detailmaps into the other channels would be possible, but putting octaves into them doesn't make sense -> it won't save you from fetching the texture multiple times. Cause i.e. in R channel you got fullres texture, in G you put 50% shrunk one (2x2), and in B you do it another time (4x4). The problem is now that all these ocatves share their repetition `borders`, so when the full octave repeats all other do to -> this becomes visible to the eye. So you won't prevent the repetition effect this way. The only way is to use octaves != NPOT -> e.g. fetch the tex ones with detailTexCoord.xy * 0.5 and another time with detailTexCoord.xy * 0.333
smoth wrote:90% seems like a wild exaggeration
underestimation cause there are less map features
edit: oh, you mean modelers. It's my experience, but the error maybe -+20%, still it's >50%
Last edited by jK on 10 Feb 2014, 21:22, edited 2 times in total.
User avatar
PicassoCT
Journeywar Developer & Mapper
Posts: 10450
Joined: 24 Jan 2006, 21:12

Re: Random WIP 2014+

Post by PicassoCT »

So, basically every mod, regardless of texture-skills can look like this?
table.remove(CheapExcuses,"I cant texture, therefore i cant release")
User avatar
jK
Spring Developer
Posts: 2299
Joined: 28 Jun 2007, 07:30

Re: Random WIP 2014+

Post by jK »

Nah, it's just that we all can learn and that's what I why made that post, to focus on a feature that often is underestimated.

PS: even 3DOs were rendered with 0.5 in tex2 green channel, so don't save with specular term. 0.5 - 0.8 isn't much, it should be the standard. Even organics as wood have specular terms around 0.3-0.5
User avatar
FLOZi
MC: Legacy & Spring 1944 Developer
Posts: 6240
Joined: 29 Apr 2005, 01:14

Re: Random WIP 2014+

Post by FLOZi »

Such high specular + normal mapping gadget tends to result in excessive white blobs :(
User avatar
smoth
Posts: 22309
Joined: 13 Jan 2005, 00:46

Re: Random WIP 2014+

Post by smoth »

yeah I get a bit absorbed in my own work so I seldom really notice what the other modeler types are not doing.. if you are going by individual instead of the quantity generated by individuals 50-60% is probably being generous considering the sheer amount of people who never really improve their abilities :(
User avatar
Forboding Angel
Evolution RTS Developer
Posts: 14673
Joined: 17 Nov 2005, 02:43

Re: Random WIP 2014+

Post by Forboding Angel »

Yep, tex2 is almost more important than tex1. Better idea is to use a little gadget that separates green form blue though so that you can control specular independently from reflections.
LordMuffe
Posts: 286
Joined: 13 Mar 2005, 15:39

Re: Random WIP 2014+

Post by LordMuffe »

Forboding Angel wrote:Better idea is to use a little gadget that separates green form blue though so that you can control specular independently from reflections.
isnt that the case even without an extra gadget?
User avatar
Beherith
Posts: 5145
Joined: 26 Oct 2007, 16:21

Re: Random WIP 2014+

Post by Beherith »

LordMuffe wrote:
Forboding Angel wrote:Better idea is to use a little gadget that separates green form blue though so that you can control specular independently from reflections.
isnt that the case even without an extra gadget?
Not as far as I know.

Flozi, you can individually customize the specular (power and amount) and reflection amount in the normalmapping shader.
User avatar
Anarchid
Posts: 1384
Joined: 30 Nov 2008, 04:31

Re: Random WIP 2014+

Post by Anarchid »

Random question from the depths of lurkdom:
- is there some extant meta-spring tech to actually specify the specular color?

Like, i want a black material that is glossy, but the glimmers are blood red.
User avatar
Beherith
Posts: 5145
Joined: 26 Oct 2007, 16:21

Re: Random WIP 2014+

Post by Beherith »

Yes, smoth's custom material shaders can do this very extensively, but it also not much work to apply this to individual units.
User avatar
smoth
Posts: 22309
Joined: 13 Jan 2005, 00:46

Re: Random WIP 2014+

Post by smoth »

This is true but depending on the map's sun the specular may not be seen at all. One of the biggest problems is that spring map makers largely do shit jobs with lighting and sky resuting in orange reflections etc (tabula etc) or don't consider lighting at all(tons of spring maps).

I am thinking about adding a secondary phong that is from a constant angle or perhaps an opposite angle to combat it but at the moment no luck so far. It is where most of my shader research is going towards currently
User avatar
Anarchid
Posts: 1384
Joined: 30 Nov 2008, 04:31

Re: Random WIP 2014+

Post by Anarchid »

depending on the map's sun the specular may not be seen at all
Unfortunately it doesn't seem there are any lua controls over sun direction either. Oh well.
User avatar
Forboding Angel
Evolution RTS Developer
Posts: 14673
Joined: 17 Nov 2005, 02:43

Re: Random WIP 2014+

Post by Forboding Angel »

smoth wrote:This is true but depending on the map's sun the specular may not be seen at all. One of the biggest problems is that spring map makers largely do shit jobs with lighting and sky resuting in orange reflections etc (tabula etc) or don't consider lighting at all(tons of spring maps).
2 years ago this would have been true, but since then, mappers have been doing a good job with lighting for the most part.
User avatar
smoth
Posts: 22309
Joined: 13 Jan 2005, 00:46

Re: Random WIP 2014+

Post by smoth »

list all the maps that have come out in the past 2 years... not counting different releases you maybe have 1/20th(in before this is a bullshit number, I am not bothering to go count) the spring library of maps. Then you start to look at the ones with lighting that was made to better utilize the specular component of texture 2 you will realize none were. A few may have settings that will do decent but we still have mappers producing work that doesn't really utilize the lighting to make the models look good.

this is including my own work. None of us really considered how it worked with specular/reflections! how do I know? I was the ONLY one to notice when reflections were broken for some time :(. If I wasn't the only one, whoever raises your hand is a douche for not posting on mantis!
User avatar
PicassoCT
Journeywar Developer & Mapper
Posts: 10450
Joined: 24 Jan 2006, 21:12

Re: Random WIP 2014+

Post by PicassoCT »

I guess im a douche then. But i only noticed after you posted, good Sir, so
-douchê!
User avatar
AF
AI Developer
Posts: 20687
Joined: 14 Sep 2004, 11:32

Re: Random WIP 2014+

Post by AF »

Douching can improve your health and general cleanliness
Locked

Return to “Art & Modelling”