Skip to content

Commit fb9929e

Browse files
fix: incorrect case in path when including toon cginc files (#370)
* fix: incorrect case in path when including toon cginc files * dummy newline to force triggering the tests --------- Co-authored-by: Sindharta Tanuwijaya <[email protected]>
1 parent 1dcd71e commit fb9929e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

com.unity.toonshader/Runtime/Integrated/Shaders/UnityToonTessellation.shader

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1518,7 +1518,8 @@ Shader "Toon(Tessellation)" {
15181518
// Unity Toon Shader 0.5.0
15191519
#pragma multi_compile _ _DISABLE_OUTLINE
15201520
//The outline process goes to UTS_Outline.cginc.
1521-
#include "../../Legacy/Shaders/UCTS_Outline_tess.cginc"
1521+
#include "../../Legacy/Shaders/UCTS_Outline_Tess.cginc"
1522+
15221523
ENDCG
15231524
}
15241525
//ToonCoreStart
@@ -1669,7 +1670,7 @@ Shader "Toon(Tessellation)" {
16691670
#pragma shader_feature _IS_CLIPPING_OFF _IS_CLIPPING_MODE _IS_CLIPPING_TRANSMODE
16701671
// Unity Toon Shader 0.5.0
16711672
#pragma multi_compile _ _DISABLE_OUTLINE
1672-
#include "../../Legacy/Shaders/UCTS_ShadowCaster_tess.cginc"
1673+
#include "../../Legacy/Shaders/UCTS_ShadowCaster_Tess.cginc"
16731674
ENDCG
16741675

16751676
}

0 commit comments

Comments
 (0)