Skip to content

Commit 200d8e3

Browse files
committed
Improve shader logs
1 parent 9d51b9d commit 200d8e3

File tree

3 files changed

+291
-144
lines changed

3 files changed

+291
-144
lines changed

Diff for: source/funkin/backend/shaders/CustomShader.hx

+3
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ class CustomShader extends FunkinShader {
2727
var fragCode = Assets.exists(fragShaderPath) ? Assets.getText(fragShaderPath) : null;
2828
var vertCode = Assets.exists(vertShaderPath) ? Assets.getText(vertShaderPath) : null;
2929

30+
fragFileName = fragShaderPath;
31+
vertFileName = vertShaderPath;
32+
3033
path = fragShaderPath+vertShaderPath;
3134

3235
if (fragCode == null && vertCode == null)

0 commit comments

Comments
 (0)