I have been trying to get a better solution for working with shaders and decided to purchase this. So far I tried only to open and run the shader_replace_simple_demo (for GMS2.3+).yyz
But, after selecting the compiler (HLSLCompiler.exe with runtime-2023.11.0.157), at this point;
var ex = execute_program_pipe(cmd, 0
| program_pipe_flags_hide_window
| program_pipe_flags_capture_stdout
| program_pipe_flags_capture_stderr
);
It exits with an error at the point;
if (ex[1] != 0) { // errored out
trace(ex[2]);
show_message("Error compiling the shader:\n" + ex[2]);
The error is simply a "Shader Loading Error".
Any ideas how to solve this?