Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Is the shader included? Also some more previews in a scene would be nice

(+1)

No shaders, only textures. This is a stripped down version of my UE5 asset on Fab

Thanks, the Fab page gives a better idea! Do the black and white preview images on this asset match the assets? I could try testing to see if I can get the effect before purchasing.

(+1)

Yes, all textures are just like those in the pics, alphamaps that can be “animated”.

(3 edits) (+1)

Thanks, it wasn’t too hard to figure out!

(2 edits)

Nice! I personally use something like this:

float tex = Texture2DSample(inTexture, inTextureSampler, uv).r;
float anim = smoothstep(inGrowth, inGrowth + inGrowthSmooth, sqrt(tex)) * tex;
float opacity = saturate(anim * inOpacity);
float blood = smoothstep(inGrowth, inColorShallow, anim);
float roughness = min(opacity * inRoughness, inMaxRoughness);

outColor = lerp(inColor, 0, blood);
outSpecular = opacity;
outRoughness = roughness;
outOpacity = opacity;