c# - Render world space canvas first -


i have canvas (in world space/3d) not showing camera due shader applied (sphere) object.

shader "custom/textureholdercustom" {     properties {          _maintex ("albedo (rgb)", 2d) = "white" {}         _mask ("mask texture", 2d) = "white" {}      }     subshader {     tags{"queue" = "transparent"}        cull off        lighting on        zwrite on        blend srcalpha oneminussrcalpha         pass        {        settexture[_mask]{combine texture}        settexture[_maintex]{combine texture,previous}        }     }      fallback "diffuse" } 

sphere object above shader attached showing first canvas not showing. want show canvas first. think attach above shader canvas not possible apply m

i 0 in shader programming


Comments

Popular posts from this blog

'hasOwnProperty' in javascript -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -

How to understand 2 main() functions after using uftrace to profile the C++ program? -