Search Issue Tracker
By Design
Votes
15
Found in [Package]
10.0.0-preview.27
Issue ID
1267776
Regression
No
Graphics.Blit will not apply the Material over the whole GameObject when the Material uses HDRP or Shader Graph shader
How to reproduce:
1. Open the user's attached "Bugreport-Graphics.Blit" project
2. Open the "Scene" Scene
3. In the Hierarchy select the "Plane" GameObject
4. Enter the Play Mode
Expected results: The whole "Plane" GameObject becomes gray
Actual results: Only the corner of the "Plane" GameObject becomes gray
Reproducible with: 2019.3.0b5, 2019.4.8f1, 2020.1.3f1, 2020.2.0a21 (7.1.1, 10.0.0-preview.27)
Could not test with 2018.4.26f1 because of the CS0246 error, 2019.3.0b4 (HDRP 7.0.1) and lower because the shader would not apply
Notes:
- The issue occurs only with these shaders:
HDRP
HDRP Shader Graph
Shader Graph (when using either HDRP or URP. Built-in Render Pipeline does not support Shader Graph)
- Changing the ZTest to Always (or any other option) does not solve the issue
- Changing the Camera's Viewport does not solve the issue
- The issue has been tested and reproduced on Windows
-
mayasarii876
Mar 08, 2022 05:50
http://103.56.148.201/
http://103.56.148.201/newmpo
http://103.56.148.201/mpo17
http://103.56.148.201/mpomm
http://103.56.148.201/mpotower
http://103.56.148.201/parisklub
http://103.56.148.201/juraganslot
http://103.56.148.201/mpo500
http://103.56.148.201/mpokick
http://103.56.148.201/mpoyes
http://103.56.148.201/xyzklub
http://103.56.148.201/betmpo
http://103.56.148.201/ogslot88
http://103.56.148.201/hoki777
http://103.56.148.201/mpojuta
http://103.56.148.201/299slot
http://103.56.148.201/mpo188
http://103.56.148.201/mpogacor
http://103.56.148.201/mpo300
http://103.56.148.201/rgo365
http://103.56.148.201/kingdom288
http://103.56.148.201/wigompo
http://103.56.148.201/mpo8899
http://103.56.148.201/mpopelangi
http://103.56.148.201/mpo555
http://103.56.148.201/dutampo
http://103.56.148.201/klik368
http://103.56.148.201/388hero
http://103.56.148.201/19dewa
http://103.56.148.201/mpoxl
http://103.56.148.201/mpoas
http://103.56.148.201/mposun
http://103.56.148.201/qqslot
http://103.56.148.201/mposport
http://103.56.148.201/dewa234
http://103.56.148.201/mesinmpo -
cr4y
Aug 26, 2020 16:24
Why is it in category "Package: SRP HD Template"?
I believe it should be "Package: ShaderGraph" instead, as it affects both Universal and HD Rendering Pipelines.
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Terrain is missing the Hidden/TerrainEngine/Details/WavingDoublePass shader when AssetBundles are built in older Unity Versions
- [Android] URP Project crashes when built on a device with PowerVR Rogue GE8320 GPU
- Deselected Game View is rendered incorrectly when resizing Game View window in two Game View window setup
- [macOS] Color picker preview shows colorful pixels when cursor is dragged on the sides of the screen
- Intensity parameter ignores Culling Mask causing incorrect lightning when additional lights are disabled
Resolution Note:
Using a ShaderGraph like this with a Blit is not supposed to work. All current HDRP shader graphs are intended for 3D objects in the scene. As such they apply camera and projection transformations to all vertices, making it unsuitable for 2D blits like this.
I suggest trying to use Custom Render Textures as they are much more suited for writing a brush painting tool: https://docs.unity3d.com/Manual/class-CustomRenderTexture.html
With scripting it is possible to generate strokes on specific part of a render texture.