Blend Unity Shader

//try lerp

float lerp(float a, float b, float w) {
  return a + w*(b-a);
}
Omadel