Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by Seneral · May 21, 2016 at 11:23 PM · shadowsurface shaderdepth bufferzwrite

Vertex Offset not written to depth buffer in Surface Shader

I'm trying to represent a terrain as a plane offsetted by a height map. It does work but the water ontop of it needs to read the depth buffer to fade itself when it's shallow.

However, the terrain vertex offset modifications done in the vertex program of the surface shader aren't written into the depth buffer, but the base mesh, the plane, is. I've done this previously on a vertex/fragment shader but it does not seem to work in a surface shader,

Here is a simplified version of the shader:

 Shader "Erosion/Terrain_Simplified"  {
     Properties {
         _BaseColor ("Color", Color) = (0.5, 0.45, 0.4)
         [NoScaleOffset] _TerrainField ("Terrain Field", 2D) = "white" {} // Defined in SimulationParameters.cginc and declared by code
     }
     SubShader {
         Tags { "RenderType" = "Opaque" }
         ZWrite ON
 
         CGPROGRAM
         #pragma target 3.0
         #include "UnityCG.cginc"
         #include "SimulationParameters.cginc" // Contains, next to others, _TerrainField
         #include "SimulationUtil.cginc" // Contains all helper functions accessing terrain height/normal using _TerrainField
         #pragma surface surf Lambert
         #pragma vertex vert
 
         uniform float4 _BaseColor;
         struct Input {
             float2 terrainUV;
         };
         void vert (inout appdata_full v, out Input o) {
             o.terrainUV = v.texcoord.xy;
             v.vertex.xyz += v.normal * GetTerrainHeightLOD (v.texcoord);
         }
         void surf (Input IN, inout SurfaceOutput SUR) {
             SUR.Albedo = _BaseColor;
             float3 terrainNRM = GetTerrainNormal (IN.terrainUV).xzy;
             SUR.Normal = terrainNRM;
         }
         ENDCG
     }
     FallBack "Diffuse"
 }

Do note that this currently won't compile, I've excluded some parameters and utility functions into 'SimulationParameters.cginc' and 'SimulationUtil.cginc' but they don't contain any additional information affecting the shader logic. Including them would be overcomplicate the problem:/

Anyway, how could I make the depth buffer 'aware' of the modified vertices in a surface shader?

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

42 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

How get rid of shadows of meshes clipped by a shader? 1 Answer

re-use depth for shadows on stereo render 0 Answers

Surface Shader vertex displacement, shadows not moving 1 Answer

How to get pure black shadow on gradient shader 0 Answers

Problem with Point light and shadow in Surface Shader custom Light Model. 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges