I'm using an if condition in my script to validate the existance of a directory. In case it doesn't exist, I want Houdini to stop execuing the code and raise a warning.
So far I have:
if (condition == False):
raise hou.NodeError("No Source Folder Found.")
exit()
But it seems...