We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d51b9d commit 200d8e3Copy full SHA for 200d8e3
3 files changed
source/funkin/backend/shaders/CustomShader.hx
@@ -27,6 +27,9 @@ class CustomShader extends FunkinShader {
27
var fragCode = Assets.exists(fragShaderPath) ? Assets.getText(fragShaderPath) : null;
28
var vertCode = Assets.exists(vertShaderPath) ? Assets.getText(vertShaderPath) : null;
29
30
+ fragFileName = fragShaderPath;
31
+ vertFileName = vertShaderPath;
32
+
33
path = fragShaderPath+vertShaderPath;
34
35
if (fragCode == null && vertCode == null)
0 commit comments