Does anyone know if you can “turn off” nodes in your script graph? I’d like to be able to test different scenarios with different nodes without deleting/cutting out nodes that are already in my script graph. So, essentially like commenting out lines of code so they don’t execute when the program is run.
Afaik there is no way to do that. But I am no expert.
Off the top of my head; You could add ‘debug’ variables and put branch nodes that divert flow depending on these flags. This is not ideal because you may end up building the final game with some flags in the wrong state, but it is an alternative to removing connections.