Home 3D Art Showcase & Critiques

Skin Shader - Realtime Translucency

1
J.I. Styles
polycounter lvl 18
Offline / Send Message
J.I. Styles polycounter lvl 18
Haven't posted in ages, so I thought it was high time I did grin.gif

Recently I've been tinkering around with hlsl, with the goal of learning to hold my own when it comes to writing shaders.

To that end, first up I'm developing a skin shader to mimic highend rendering materials, and physical properties (eg, translucency, fresnal specular, oiliness, etc). Anyways, enough words, here's my WIP:

Shader:
1 pass, pixel shader 2.0
tested on a geforce fx 5200 and a quadro fx 2000
no idea how to benchmark these properly, but it runs smooooooooth full screen @ 1280x960

Asset:
I call him 'Squishy' and he goes *BOING*
~1100 polys,
no diffuse
no specular
512 normal map
256 full-white (eg, 100% on) temporary tex used in the translucency falloff and power slots

hlsl-skin_wip03.jpg

I'm also keeping a bit of a progression log which has a few earlier shots and a mini-diary detailing the progression of the shaders on my webpage - find it here.

Replies

  • pogonip
    Offline / Send Message
    pogonip polycounter lvl 18
    Wow ..very nice !
  • aresee
    Offline / Send Message
    aresee polycounter lvl 18
    That's awesome.
  • Vailias
    Offline / Send Message
    Vailias polycounter lvl 18
    sweet! So its all hlsl? What are you using to preview the shader, and also can I have a copy of the shader when you are done? laugh.gif
  • J.I. Styles
    Offline / Send Message
    J.I. Styles polycounter lvl 18
    pogonip, aresee: cheers guys smile.gif

    Vailias: yup, all hlsl - using the max7 directx 9 viewport material, hence why the shots are in the max viewport. Beauty of this is that the exact same file and code is used in both the viewport while you're creating your assets, as is used in your final engine... man I love that smile.gif

    As for getting a copy once it's done, short answer is yes, I do intend to release it after it's complete; long answer is that may be a while since my to-do list still contains a few more things like fresnal specular and a more robust lighting model. I'll also be "compressing" the translucency texture inputs in a similar way that normal maps represent RGB=XYZ, but something along the lines of R=trans power,G=trans ramp out, B=trans occlusion (but that wouldn't take into account the colour component which I want, so haven't decided about that yet).
  • KDR_11k
    Offline / Send Message
    KDR_11k polycounter lvl 18
    Do you have any speed comparisons? I mean, shaders are nice but if you couldn't handle more than 1000 polies using them onscreen it could become problematic. And does the shader allow for faking internals (e.g. bones) since those do influence the translucency of flesh?
  • palm
    Offline / Send Message
    palm polycounter lvl 18
    This looks great.
  • Weiser_Cain
    Offline / Send Message
    Weiser_Cain polycounter lvl 18
    Looks nice, release beta, frustrating not being able to play with it.
  • Illusions
    Offline / Send Message
    Illusions polycounter lvl 18
    Would it be possible to make it so that it incorporates a translucency map? That way squishy can have some veins etc running through him...

    ...otherwise, looking freaking sweet...
  • J.I. Styles
    Offline / Send Message
    J.I. Styles polycounter lvl 18
    KDR_11k: there's really no hard numbers I can get out of max's viewport, but in its current unoptomised state, it runs smooth fullscreen @ 1280x960 on a 12k tris model with 4 unique 1024x1024 tex inputs. For a comparison, it starts to slow down comparabley with a standard diffuse/spec/normal map shader.
    In regards to faking internals, it does an occlusion kludge - it takes a texture for ramping out the translucency (eg, how far it can wrap around a certain area), and also the amount of occlusion which is multiplied by localised attenuation... which means you can fake internal depth(thickness/ramp out) and structure(occlusion). I just need to see if I can cheaply give it an ease in -and- ease out colour like mental rays fast sss smile.gif

    palm: cheers smile.gif

    Weiser_Cain: hehe, by profession I'm an artist, so I can understand frustration of having new shiney toys dangled in front of your face - I'm by no means a programmer, and I've only been at this for 3 weeks now, so it may be a little time before I release anything smile.gif
    Main reason for showing this is to get some feedback and ideas/crits (much the same as everyone shows off character art) - If there seems to be enough people wanting to try it out though, I might do an early release to get some more targeted feedback.

    Illusions: yup, that's already in -- the trans. power texture is the intensity, or brightness of the translucency - the ramp out texture is how much a given area can wrap around into the shadow, so that effectively gives control of dermal depth. There will also be occlusion mapping to simulate the amount of "pass-through" light as well, just need to get round to it smirk.gif

    cheers guys, hope to have another update soon
  • Eric Chadwick
    Looking pretty cool. Way over the top, but good to do that for testing, I'm sure you'll bring it down for non wax-candle-looking skin.

    Noticed a comment in your blog: "normal maps have introduced a small seam error which I haven't been able to find any referance as to how to go about fixing it. It's kind of like the normals are inverse on Y/G from the uv stitch... kinda like you need to reset xform on one side of the uv's... "

    Sounds to me like the tangents need to be computed. To fix it you need to massage the vertex normals to bring the lighting into tangent space. And that means not only duplicating normals along the seam, but also rotating their S and T vectors. (and that's about as far as my knowledge goes!)

    Check out Nvidia's MeshMender for details. Probably won't help for a viewport shader, you would need to use a modifier that updates the normals' tangents every frame. But if you pulled that off, I'm sure a lot of people would come knocking on your door!

    I'm eager to see where you go with this. Also the hair shader sounds promising.
  • MoP
    Offline / Send Message
    MoP polycounter lvl 18
    This looks really awesome! Can't wait for you to release it so I can play around with it smile.gif
  • John Warner
    Offline / Send Message
    John Warner polycounter lvl 18
    hey man, this is really good stuff! cutting edge, hardcore shit man.. i haven't seen this is next gen engines..

    unless i'm confused--??
  • CrazyButcher
    Offline / Send Message
    CrazyButcher polycounter lvl 18
    looking really cool, and it's definetely the problem with the tangents on the "seams" being wrong that Eric pointed out. the meshmender really helps fixing it, but yeah then you need your own viewer or some different maxplugin that feeds the renderer with correct tangents.

    one thing so, I assume you use the normals to find out if you are behind or outside, but wouldnt it be wrong compared to real sss when you are actually on the outside of the object at the backside ?
    I think in the second shot "light inside belly" one can see that the rest of squishy is lit like regular front lighting, which makes the eyewrinkles and such "cold lit" as the "outside" case in the first shot, however since the light is inside they should be warmly lit as well. which is something that cant be trivially done, cause basically the shader would need more info on the mesh topology, some sort of volume information.
    cause you cant really do raytracing to find out if you are inside the object and such ?

    light | object | <- viewer

    the backside would be backface culled, so you are "inside" the object

    light object | <- viewer

    which is somewhat different case then if the light actually hits the backfacce first, but well thats just my assumption

    anyway its all about tricks, so yeah it looks cool as it is smile.gif

    this here is a less trivial approach to find out if you are really inside, how far inside...

    http://www9.informatik.uni-erlangen.de/Persons/Stamminger/Research/Research/tsm
  • poopinmymouth
    Offline / Send Message
    poopinmymouth polycounter lvl 19
    [ QUOTE ]
    hey man, this is really good stuff! cutting edge, hardcore shit man.. i haven't seen this is next gen engines..

    unless i'm confused--??

    [/ QUOTE ]

    While not exactly like this, UE3 has "transmission maps" which are it's version of SSS map.

    This is looking AWESOME man. I didn't know you coded as well as made awesome art. Message me more on ICQ and I'll try to actually be on more. 8-)
  • Keg
    Offline / Send Message
    Keg polycounter lvl 18
    project offset has something similar too.

    Looking good, can't wait to see what else you come up with.
  • J.I. Styles
    Offline / Send Message
    J.I. Styles polycounter lvl 18
    EricChadwick: hehe yup you're right about it being way over the top on my little friend squishy - he's a bit of an extreme example laugh.gif it's soooo tweaky at the moment with balancing out scale vs attenuation blooming that it's easier on the art side just to try and do the upper extremes and mask down from that through the texture inputs.
    Thanks for the info on meshmender - I think it's not possible to re-solve the normal within the vertex shader, even if it was, it would be -really- expensive. after a bit more research it appears to be a rather bad bug in max's implementation of its viewport shader -- ben cloward had a good analysis of the problem here: http://bcloward.blogspot.com/2005/05/normal-map-seams-in-3ds-max.html

    funny how the max7 beta didn't have the bug, it was introduced later on smile.gif

    MoP: cheers, sounds like it's got a bit of interest so I should release -something- in a week or two.

    John_Warner: I know of a few next gen games that do have generalised sss shaders, but I'm not aware of any with this level of tweak - pretty much the equivelant of max's falloff and that's it (problem being it doesn't wrap into the dark areas, only gradients the light).

    CrazyButcher: this is definitely an issue with the way it's being done cheaply - an easy kludge to resolve this is simply ramping through a self shadow occlusion checked against per normal attenuation. problem is the whole self shadowing part, I'm not too keen on getting that to happen in the max viewport as a dedicated unified lighting system would be a lot better to cope with that wink.gif

    cheers for the info and link though, lots to think about laugh.gif

    poopinmymouth: cheers poopy laugh.gif
    "I didn't know you coded as well as made awesome art" ... heh, neither did I smile.gif

    Keg: Yah, I had a brief chat with the project offset guys, they're doing some great stuff (still haven't cleaned up the stain I left from the object motion blur stuff they've done). cheers smile.gif
  • Eric Chadwick
    Wow, thanks for the link to Ben Cloward's blog. I didn't know he had that. Very informative reading.

    About the UV seam being a bug between v7beta and v7, it seems Ben's investigation was only into what happens when the adjoining UV edges are in the same orientation in UV space... yeah that's a dumb bug to make.

    But I was talking about a more general limitation that comes whenever adjoining UVs have different orientations in UV space... then you'll get a seam, v7beta or not. For this you need a MeshMender-like fix. From what I've seen it's pretty easy for coders to get this into a game engine, it just takes some pre-computation on the model before everything's peachfuzz-smooth.

    Thanks again man, good link.
  • Ben Cloward
    Offline / Send Message
    Ben Cloward polycounter lvl 18
    I'm sooo jealous! J.I. Styles, you just wrote the shader I've been dreaming of writing since I started learning Cg and HLSL. You beat me to it! Skin was going to be my next project, but I got a little side tracked learning MaxScript. Your shader looks really nice. I'd love to get a copy of it to play around with. Nice work!
  • FatAssasin
    Offline / Send Message
    FatAssasin polycounter lvl 18
    [ QUOTE ]
    Wow, thanks for the link to Ben Cloward's blog. I didn't know he had that. Very informative reading.

    About the UV seam being a bug between v7beta and v7, it seems Ben's investigation was only into what happens when the adjoining UV edges are in the same orientation in UV space... yeah that's a dumb bug to make.

    [/ QUOTE ]

    Thought you might like to know that the bug seems to be fixed in Max 8. I don't know the technical details like you guys, but I opened Ben's test file in both 7 and 8 and there is a definite difference.
  • Raven
    Offline / Send Message
    Raven polycounter lvl 18
    Only thing I've seen R/T using Translucency has been the PRT DirectX9 Demo (9.05+) and the new Lulu 7800 Demo.
    (the 7800 demo is impressive as hell mind you)

    It looks very good. Certianly not seem something like this working with a reasonable speed on an FX5200 before.
    (I still use my FX5200 for every day use)

    Though I'm not sure I like the Vertex Lighting, using another map or the alpha channel of one of the maps to fake bones would also provide a good effect.

    As far as the FX Cards go, it's best to keep things as a more complex single pass. As multi-passes cause horrible slow-downs. However for Radeons you'll want to do it the other way around. Spread it out over a few passes.

    smile.gif Still pretty sweet.
  • Ben Cloward
    Offline / Send Message
    Ben Cloward polycounter lvl 18
    Hey, I found a couple of things that might help. First of all you can turn on a frame rate feature for the viewport of 3ds Max. This might help you judge the performance a little bit better. Open up your max folder and find the file called 3dsmax.ini. Open it with Notepad. Find the entry called [Performance]. Add a new line right under it that says ShowFPS=1. The next time you open Max you'll see a little box down at the bottom that shows the current frame rate of the viewport.

    Also, Nvidia just posted a PDF that gives a ton of details about their GeForce7 demos, including how they achieved the translucent skin effects in the Luna demo. It's pretty complex, but you might find something in there that you can use. Here's the URL:

    http://download.nvidia.com/developer/presentations/2005/SIGGRAPH/Truth_About_NVIDIA_Demos_Med.pdf

    Good luck!
  • Darksun
    Offline / Send Message
    Darksun polycounter lvl 18
    Wow dude... that's awesome.
    Squishy scares me.. ooo.gif
  • J.I. Styles
    Offline / Send Message
    J.I. Styles polycounter lvl 18
    Woo! go away for a short holiday (mmmmm seafood and spa's) and get back to a heap of cool links and info - thanks guys, really appreciate it smile.gif

    Eric: again, thanks for the info -- I've had a hell of a time getting my head around the different transforms to re-normalise the tangents, but yah, no such luck fixing that original problem - max's bug hasn't helped any either but at least I know where half of that problem is coming from smile.gif I have a theoretical way to get around the differing uv orientation bug, but I honestly don't know if it's able to be implemented in a vertex shader since it's too high level for that kind of process... I have an idea how to get that, but at that point it'd be easier to just let a low level tweak handle it in-game and leave the max viewport for preview purposes with the understanding it's not 100% frown.gif


    FatAssasin: doh, that'd be right... I'd been invited onto the max8 beta, but at the time I hadn't had time to even look at it. ah well, good to know however.


    Ben: Cheers! The fps display is just what I was looking for, although it's showing two very similar, but different numbers, so not exactly sure which one to take note of laugh.gif
    Your shaders are actually the things that kick-started me into writing my own - thankyou for being an inspiration, keep the awesome work flowing! smile.gif If you're interested, I'll send you along a pre-release version of the shader when I'm nearly ready to release it publicly, to get some feedback on the code and any optimisation pointers you could offer smile.gif

    thanks for the links too! that nvidia one has given me a few grand ideas which I know I'll never be able to pull off at the moment, but... I also think I'm onto a pretty cool approximation kludge based off an idea from that, so fingers crossed smile.gif

    Raven: yah, I like to work off the 5200 as a lower spec middle-ground, but it's just so nice to play with the next gen specs too - that's kinda where this came from, having experianced a loss of control in the artists realm with next-gen specs, I wanted to see if I could bridge that gap and be able to collaborate more effectively with programmers on shaders, if not be able to just write my own smile.gif

    Darksun hehe cheers - Squishy shouldn't scare you... after all, he's only made up of rubber-like flesh and cartledge, not even able to bite anything... and that whole no limbs aspect frustrates him so much that he's taken to living in solace in an old pair of floral underpants under the bed.
  • Ben Cloward
    Offline / Send Message
    Ben Cloward polycounter lvl 18
    Yeah - I'm not really sure why there are two different frame rate boxes either. It's an undocumented feature so there's really no way to know. I've noticed that only the one on the right show when you're playing an animation - so maybe that's the one you want to go by? I don't know.

    Hearing that my shaders helped you get started really made my day. That's the whole reason I put them up. I'm really glad they helped you. I'm hoping that a lot of artists will take the plunge into shader writing because of the amazing power they give us in controling what our characters look like.

    I'm very interested in helping you with this. Like I said, this is what I was going to work on for my next project. Feel free to email me if there's something you get stuck on or when you're ready for feedback.
  • J.I. Styles
    Offline / Send Message
    J.I. Styles polycounter lvl 18
    Ok, update!

    here's two new pics showing off the new attenuation bloom ramping, and the first specular component being re-implemented. The specular needs a secondary fresnal modifier to give it that glancing sheen that skin has, but after that's done it's pretty much ready to release smile.gif

    The attenuation blooming and specular in action:
    jistyles-hlslskinwip04.jpg

    The shader inputs and settings for the previous image:
    jistyles-hlslskinwip04_settings.jpg

    As you can see, I still haven't gotten around to putting the texture inputs for the specular component. How the textures are/will be working is as follows:

    Diffuse map:
    RGB=diffuse colour texture
    A=Opacity

    Translucency map:
    RGB=translucency colour and intensity
    A=ramp out amount (eg, light scattering radius)

    Normal map
    RGB=XYZ
    A=Maybe height if Mr. Ben Cloward wanted to help me out with offset mapping wink.gif

    Specular map:
    RGB=Specular colour and intensity
    A=Glossiness

    On a side note, I've had to upload these new pics to a free server, since that first pic chewed up ~420mb in under a week... my poor little hosting plan wouldn't cope with too much more laugh.gif at least it's nice to know that people are checking it out though! Thanks for the support everyone!

    Ben: I totally agree about the advantages of adding shader authoring to an artists skillset - What I've experianced so far is that although working on next gen means higher levels of freedom in spec, the artists range of output has shrunk - meaning that we get more polys and pixels to play with, but the ability to create and collaborate on a broader range of elements has shrunk. We're relying on specialists to do their thing, instead of being able to collaborate togethor and get the best of both worlds. To this end, I've been thinking about writing up a quick shader overview for artists, explaining the basics of the shader structure language, and referancing where to go to learn everything else. Do you think that'd be worthwhile?
  • Keg
    Offline / Send Message
    Keg polycounter lvl 18
    cool, this going to be like a .fx release? or a max only type of shader?
  • CrazyButcher
    Offline / Send Message
    CrazyButcher polycounter lvl 18
    uh thats some really nice improvement there smile.gif
    nice head as well.

    there is quite some papers about introduction to shaders and such, and most of them also bring up some basics about the rendering pipeline. However you will mostly find these papers and articles if you dig it up on graphics coding sites, which are probably not that known to artists.

    Some sort of "tech for artists" wiki or so, would be great and I'd love to contribute to it as well. Eric has some cool articles and his graphics dictionary, if we could set up some sort of central place, preferrably wiki, and put the material in a unified way so that people dont have to search thru forums and links or coding pages, it would be a great help I guess.
    We could even expand it a bit and give descriptions on the tools, like normalmap generation,... "artists" introduction to fx composer or rendermonkey or so. well a wiki would make it fairly easy to expand from the shader basics.
    we just have to be careful making it artist centric and not too much like regular graphics coding pages, ie we need lots of illustrations and sample pics smile.gif

    anyway such a "tech for artists" wiki would be a great idea imo. while surely one can hunt down the material himself now, it would be more beginner friendly and easier if there was a place dedicated to it.
  • vahl
    Offline / Send Message
    vahl polycounter lvl 18
    Impressive stuff, I'd really love to play with that one !
  • MoP
    Offline / Send Message
    MoP polycounter lvl 18
    J.I. Styles: This is looking really nice! Great work!

    CrazyButcher: A graphics technology wiki sounds like a very good idea to me too!
  • FatAssasin
    Offline / Send Message
    FatAssasin polycounter lvl 18
    I second the motion for a shader info site for artists! I'd like to get into it, but wouldn't know where to start.
  • KDR_11k
    Offline / Send Message
    KDR_11k polycounter lvl 18
    Just for the kicks: What does it look like when you put the light inside her nose? tongue.gif
  • EarthQuake
    Awesome i cant wait to try this out!
  • Ben Cloward
    Offline / Send Message
    Ben Cloward polycounter lvl 18
    Heh - I'm looking at a "To Do" list I wrote for myself about two months ago. Two of the items on the list that I hadn't crossed off yet are:

    - Write a skin shader
    - Write a tutorial on the basics of shader writing

    Funny stuff. Thanks for helping me with my list, Joel. :0D I would love to contribute to a project helping artists learn shader writing. In fact, I have a ton of free server space that I use for my web site. It has unlimited bandwidth since it's hosted by a friend of mine. If you guys want to write some tutorials I'll be happy to host them. I don't know anything about setting up a wiki though. My knowledge of web programming only covers basic HTML. If we want a wiki (I think that would be best) we'll have to figure out something else.

    Joel, offset mapping is very simple. Here's some sample code to do it:

    In your vertex shader, calculate the eye vector and pass it to the pixel shader in the same space as your other vectors (tangent space, or world space). You're probably already doing this. Then do the following at the beginning of your pixel shader:

    // normalize the eye vector
    half3 V = normalize(In.eyeVec);

    //because Max is Z up, you have to invert the Y
    //component of the eye vector. I don't understand
    //why completely. I just figured it out by trial
    //and error.
    half2 newV = V.xy;
    newV.y = -newV.y;

    //sample the alpha channel of the normal map
    half height = tex2D(bumpTex, In.texCoord.xy).a;

    //offset the texture coords based on the view vector
    //and the height. offsetBias is a user definable value
    //that usually works best when set to about 0.04
    half2 offset = newV * (height * 2.0 - 1.0) * offsetBias;
    half2 newTexCoord = In.texCoord.xy + offset;

    Once you've caculated newTexCoord, use it as your texture coordinates to look up all the rest of the textures that you have to sample - your diffuse map, your normal map, your specular map, etc, instead of the standard texture coordinates. That's all offset mapping is. Just messing with the texture coordinates based on the viewing angle and the height map to give the illusion of depth. Give it a try.

    Good luck!
  • CrazyButcher
    Offline / Send Message
    CrazyButcher polycounter lvl 18
    a friend of mine, who works with me on a gameengine, is quite a wiki fan, and has set up many, I am sure he would do it, since he is also a coder/art mix.
    sorry for the sidetracking of the original thread

    btw the Y -/+ thing very likely is right handed vs left handed coordinate systems
  • J.I. Styles
    Offline / Send Message
    J.I. Styles polycounter lvl 18
    little update, very close to finishing it off now - all my features are in, just need to optomise and maybe do a simplified technique for older cards.

    this one shows off fresnel specular and the per pixel specular and gloss controls:

    hlslskinwip05.jpg

    and for referance sake, here's a huge repository of photos of Asian girls, spread out over 277 thread pages titled "A tribute to the beauty of Asian girls"... great ref for studying skin properties laugh.gif :

    http://forum.japantoday.com/m_116851/mpage_1/key_/tm.htm
  • gauss
    Offline / Send Message
    gauss polycounter lvl 18
    well aren't you a clever bastard? smile.gif nice work, and thanks for showing us how you've been working.
  • vahl
    Offline / Send Message
    vahl polycounter lvl 18
    wow awesome...

    the more I see it, the more I want to try it tongue.gif
    thanks a lot for showing this ! smile.gif
  • dom
    Offline / Send Message
    dom polycounter lvl 18
    This is looking great. Thinking of factoring in ambient occlusion? It might help bring out the dark areas.
  • EarthQuake
    Yeah if you could do realtime AMBOCC i would make sweet, sweet love to you down by the fire.

    [edit] Or you could just bake it into your diffuse, i think that would be a lot more realistic =D
  • Josh_Singh
    Offline / Send Message
    Josh_Singh polycounter lvl 18
    This is looking tight as hell. I really cant wait for you to release this shader. Really good work.
  • FatAssasin
    Offline / Send Message
    FatAssasin polycounter lvl 18
    This is very impressive. Thanks for sharing.

    One question, is the spec/gloss map applied to the model? Becuase I don't see the lips getting any shinier than the rest of the face, even though the map itself is much brighter in that area.
  • J.I. Styles
    Offline / Send Message
    J.I. Styles polycounter lvl 18
    gauss: Cheers dude!

    vahl: shouldn't be too long now to release - I think a first version release will be happening sometime this week.

    dom: I was thinking about doing another shader after this one in a kludged ambient occlude type of vein... playing around with generating a reflection cube map, and sampling points in depth to create a lighting point cloud -- we'll see how that goes, but then I'd try and plug it modularly into this one.

    EarthQuake:hehe, well see dom's answer there, but I could do a seperate light map on top of this too, only trouble is that in a single pass and as a single effect, it's pushing the complexity boundaries... it's about at the limit of 2.0 instructions as it is, although it does need a bit more optomising smile.gif

    ghost_rider: cheers - like I said above, shouldn't be too long to a public release.

    FatAssasin: thanks - yeah, the spec/gloss is on it, but it's toned down fairly subtle on that mesh. It works off the one map, RGB is for the specular intensity (luminance) and colour tinting (hue), and the alpha is for the gloss intensity. There's a global multiplier which controls the range that the 0 to 1 of the map affects, so even though the difference on that map is quite a range, it's stepping over only a little range when it's applied through the multiplier... my bad on that since I was playing around with the fresnel too much laugh.gif
  • EarthQuake
    You can simply render out a GI lightmap from max and add it as a multiply layer over your diffuse map, will give you the same result as actually applying a lightmap.
  • j4polaris
    Offline / Send Message
    j4polaris polycounter lvl 18
    Incredible work J.I. . I especially appreciate the 277 pages of skin references... blush.gif
  • J.I. Styles
    Offline / Send Message
    J.I. Styles polycounter lvl 18
    Alrighty...

    <font color="orange">Public release, version R2 is ready to download smile.gif</font>

    go here to grab it.

    It's not perfect, there are inherant limitations, it's quite tweaky, it only supports one light+ambient, and the code isn't as pretty as it could be. With that said however, you can get some awesome results and I hope you enjoy playing around with it!
  • Joshua Stubbles
    Offline / Send Message
    Joshua Stubbles polycounter lvl 19
    Kick ass. Amazing work there, J.I. Thanks for making it a pub release laugh.gif
  • MoP
    Offline / Send Message
    MoP polycounter lvl 18
    Yep, big props for releasing this, dude!
    I'll have a play around with it as soon as I make something to test it on smile.gif
  • vahl
    Offline / Send Message
    vahl polycounter lvl 18
    same thing here, thanks man !!! great work !! smile.gif
  • J.I. Styles
    Offline / Send Message
    J.I. Styles polycounter lvl 18
    hehe since I really didn't include any instructional help, here's a quick how-to on the textures side:

    diffuse: RGB, alpha not supported yet.
    spec: RGB is the colour and intensity/power of the specular component. Alpha is the glossiness.
    Trans: RGB, again it's colour and intensity/power. Alpha is the amount the light can bleed along the normals (which in turn is amplified by the attenuation bloom) - think of the alpha like the internal depth, and the rgb like the density of the internals... so alpha is the scatter radius and rgb is light penetration amount.

    normal: rgb, xyz... pretty standard.

    In regards to the settings, it defaults to some more stable base numbers, but it is incredibly flexible for a number of different surface types. I suggest moving the light source far away and balancing out the settings, then move it closer and play with the attenuation bloom/focus controls seperately. Fresnel settings are dependant on the base specular settings since it's all one pass, so I'd suggest doing the base spec settings then go onto the fresnel stuff after that's all good - just check the glancing angle flare that the fresnel settings give by rotating around your model. Pretty easy, but it all can be very tweaky. Anyways, have fun guys laugh.gif
  • J.I. Styles
    Offline / Send Message
    J.I. Styles polycounter lvl 18
    <font color="orange">Second public release, R3 is up and ready to download</font>
    go here to download: HEREHEREHERE

    So what's new? Well apart from a few tweaks to the lighting model and some optomizations here and there, you've now got the choice of choosing between using 1, 2, or 3 light setups from the technique drop down.

    Thanks to all the people that sent along pics of their wip models and comments - I hope you enjoy the next version. Enjoyerise smile.gif
1
Sign In or Register to comment.