frustum Posted November 21, 2011 Share Posted November 21, 2011 Please describe what kind of new materials you would like to see in the engine. Link to comment
steve3d Posted November 21, 2011 Share Posted November 21, 2011 add a reflection mask for mesh_reflection_*, which use same uv as diffuse. Can I ask for a function in editor? Currently In node editor tab, all the flags and name, property are suitable for one node selected, if I want to clear all selected node's property, I have to clear it one by one, this is annoying work. so is it possible to make those operation also applies to all selected nodes? Link to comment
alexei.garbuzenko Posted November 21, 2011 Share Posted November 21, 2011 what we need is material for custom impostors - billboard that is able to blend between N images depending on view angle. Link to comment
steve3d Posted November 21, 2011 Share Posted November 21, 2011 what we need is material for custom impostors - billboard that is able to blend between N images depending on view angle. Maybe what you want is what I want, just impostors system like speedtree's billboard. And I want more, full speedtree material system support. Link to comment
carl.sutton Posted November 21, 2011 Share Posted November 21, 2011 I'm not sure if the code exists to manage this already but I haven't investigated into it yet so I thought I'd bring it up here. I would like to be able to layer multiple materials onto one surface using simple stencil masks for each area that a material needs to be placed upon. (i.e. so that one surface can have areas that are dull, shiney, reflective, transparant etc). I'm not sure if this can be handled with decals already, or how easy the systems would work together. Link to comment
alexei.garbuzenko Posted November 21, 2011 Share Posted November 21, 2011 I also want more than just a material. Everyone would benefit of speedtree-line impostors, but at the moment we are discussing new materials :) Link to comment
ulf.schroeter Posted November 21, 2011 Share Posted November 21, 2011 I would like to see some texture-array based terrain material with some alpha-based blending between primary and secondary texture as described here. This material should give much more realistic/complex terrain surfaces and also could be the base for some DX10+ only ObjectTerrainExtended with much higher detail texture counts (up to 256). With such an approach the RGB masks image would index primary texture index (e.g. R component), secondary texture index (e.g. G component) and their blend ratio (e.g. B component). Some similar approach - but I think not as good - can be found here. Link to comment
steve3d Posted November 22, 2011 Share Posted November 22, 2011 I think if unigine crew can write some tech documents about how to extend/write new materials or shaders would be much better to this. There are so many experienced developer here can write their own shaders. but in fact there is no any information about unigine's internal shader architecture, only by reading existing shader to extend unigine's shader system is a hard work. 1 Link to comment
binstream Posted November 22, 2011 Share Posted November 22, 2011 There is a custom shader usage example available in the recent SDK. Link to comment
danni.coy Posted November 23, 2011 Share Posted November 23, 2011 A few requests from the artists in my studio this year. 1) Independent tinting of diffuse and specular textures. 2) a material that can blend between sets of maps based on distance from the camera. more to come... Link to comment
danni.coy Posted December 7, 2011 Share Posted December 7, 2011 something like this would be cool. http://blog.wolfire.com/2011/12/Overgrowth-a160-video-changelog Link to comment
ivan.cuevas Posted December 7, 2011 Share Posted December 7, 2011 A color_scale parameter for Emission. Actually emission color is defined by emission texture but this make difficult to create color transitions. 1 Link to comment
ulf.schroeter Posted December 15, 2011 Share Posted December 15, 2011 water droplets post processing material imitating fading water flow on virtual camera lens e.g. when changing view position from under to over water position 2 Link to comment
steve.brodie Posted December 19, 2011 Share Posted December 19, 2011 We are still waiting on the ability for the import diffuse maps to terrain the correct way around, ie mirrored from the current projection. We have still not used unigine Terrain in any projects due to this projection issue. Is there any plan to fix it? Link to comment
danni.coy Posted January 10, 2012 Share Posted January 10, 2012 from our artists option A: and Option B Link to comment
frustum Posted January 10, 2012 Author Share Posted January 10, 2012 Option A is ready. Updated core.ung will be available tomorrow. 1 Link to comment
danni.coy Posted January 11, 2012 Share Posted January 11, 2012 Thankyou very much.... Link to comment
frustum Posted January 11, 2012 Author Share Posted January 11, 2012 The material name is mesh_layer_base. Rename this attachment to "core.ung". core.zip Link to comment
danni.coy Posted February 8, 2012 Share Posted February 8, 2012 it is possible to have another version of this material but that automatically fades between the two mask textures based on distance from the camera. So two extra parameters the distance that material shows 100% material1 and the distance that material2 shows 100% any value in between these values is a blend. Link to comment
alexander.zubov Posted February 8, 2012 Share Posted February 8, 2012 what is the practical application if you don't mind me asking? :) Link to comment
danni.coy Posted February 20, 2012 Share Posted February 20, 2012 Another one from our artists Independent tinting for Diffuse and specular channels. Quite often we want to tint the diffuse channel but keep the specular highlights white. Link to comment
Guest shane.ploenges Posted February 20, 2012 Share Posted February 20, 2012 Just a quick stupid question Danni, how tid you get your editor to look like that :) Looks much nicer than the default blue one. Link to comment
manguste Posted March 20, 2012 Share Posted March 20, 2012 it is possible to have another version of this material but that automatically fades between the two mask textures based on distance from the camera. So two extra parameters the distance that material shows 100% material1 and the distance that material2 shows 100% any value in between these values is a blend. Could you please specify in some detail what you need such material for? Link to comment
manguste Posted March 20, 2012 Share Posted March 20, 2012 Another one from our artists Independent tinting for Diffuse and specular channels. Quite often we want to tint the diffuse channel but keep the specular highlights white. That would make shaders even more heavier. If you need this simple colored materials, why not create a number of them with small 16x16 textures? Link to comment
alexei.garbuzenko Posted March 21, 2012 Share Posted March 21, 2012 That would make shaders even more heavier. sounds like nonsense to me. There are lot of things in shaders that have much more performance hit (i.e. all shaders always use normal/specular map lookup even if default ones are used; environment mode is always querying ambient lighting texture, etc.). Separate specular tinting would add just one more half4 multiplication that costs almost nothing in general case. +1 to this request. If you need this simple colored materials, why not create a number of them with small 16x16 textures? I think you got him wrong. Just imagine an apple model with a branch that use single unwrapped texture. Branch and apple have different specularity, so we need a specular map that is 100% black at branch part. It is very easy to tint that apple from green to red, but highlighed part would also be redish instead of white. There is nothing we can do here with 16x16 specular textures cause branch would be also lit, so we need adequatelly tinted specular maps for each color or even separate diffuse maps and no color tinting in material at all. (not 3d, Photoshop tinitng only) Link to comment
Recommended Posts