Skip to content

Instantly share code, notes, and snippets.

@Fewes
Fewes / vr_extended.shader
Last active January 9, 2019 23:34
A modified version of Valve's standard shader for The Lab renderer. It supports vertex colors, vertex AO (alpha channel) as well as up to four detail textures. It also repacks metalness, roughness, AO and the detail mask into a single mask texture. Please note you need the custom GUI for it: https://gist.github.com/Fewes/43f2b97fe8785e9a69e22836…
// Copyright (c) Valve Corporation, All rights reserved. ======================================================================================================
// Modified to support vertex colors, vertex color linearization, vertex ao (through vertex alpha), up to 4 detail textures as well as tighter mask packing
//
// The mask texture is laid out like this:
// R - Metalness
// G - Roughness
// B - Ambient occlusion
// A - Detail mask, where:
// 0-25% intensity = Detail map 1
// 25-50% intensity = Detail map 2