6
2015
Custom shader Transparency & Batching issues
While updating this billboard shader https://github.com/unitycoder/DoomStyleBillboardTest , had couple strange shader issues:
Problem#1:
Overlapping transparent area clips other object behind it (see issue#6)
This one was solved by adding “ZWrite Off” to the shader, apparently something to do how transparent objects get depth sorted..(?)
http://docs.unity3d.com/Manual/SL-CullAndDepth.html
(image, problem#1)
—
Problem#2:
If there are multiple copies of the same object, rotation/scale/direction is broken, object moves to wrong direction as if they are locked together (see issue#5)
This one was solved by adding DisableBatching”=”True” to the shader tags. So Dynamic Batching was the issue..
Tags {“Queue”=”Transparent” “IgnoreProjector”=”True” “RenderType”=”Transparent” “DisableBatching”=”True”}
Other option was to disable [ ] Dynamic Batching from player settings.. but that would disable it for all objects..
http://docs.unity3d.com/500/Documentation/Manual/SL-SubshaderTags.html
(image, problem#2)
Related Posts
Leave a comment
Recent posts
- Favorites in PackageManager
- LudumDare59 : Signal
- Unity Editor: Tree Generator
- Leaf/Foliage Generator Tools (Runs in Browser)
- Testing Unity AI Beta
- Ways to Support UnityCoder Development
- Using UI Slider to Create 5-Star Rating Element
- Game Music Library For Unity (editor plugin)
- Fontastic : Easily Test Fonts in Unity Editor!
- GeoTiff Importer & Terrain Generator for Unity
- Create Baked DropShadow for UI images
- .JP2 Ortho Image Converter to PNG/JPG/TIFF
Recent Comments
- on Mesh Exploder (sources)
- on Sprite Sheet Flip Book Shader
- on Sprite Sheet Flip Book Shader
- on [Asset Store] PolygonCollider2D Optimizer
- on Trajectory Test Scene 2.0
- on Vector3 maths for dummies!
- on UnityHub 3.6.0: Remove Version Control & Cloud Dashboard columns
- on Using RenderDoc with Unity (graphics debugger)
Coin:
CUgDSbRqFcAumDSAcdKDvuXsw26VdkJe8C8WGUQHBAGS
An article by











