Image Effect in unity Free
Asked Answered
W

1

0

ok…so i want to have images (semi - transparent) to appear in the players gui…where ever they go i want the image to appear

Whet answered 19/1 at 13:35 Comment(0)
A
0

Try with this shader:

Shader "Custom/UnlitOverlayTransparent" {
Properties {
    _MainTex ("Base (RGB) Trans ", 2D) = "white" {}
}
  
SubShader {
    Tags {"Queue"="Overlay" "IgnoreProjector"="True" "RenderType"="Overlay"}
    LOD 100
    
    ZTest Always
  
    Pass {
        SetTexture [_MainTex] { combine texture } 
    }
}
}
Aesthetically answered 19/1 at 13:35 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.